diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..6090d7c
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,3 @@
+* text=auto eol=lf
+*.hxp linguist-language=Haxe
+.hxpkg linguist-language=JSON
\ No newline at end of file
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..a106d31
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,214 @@
+name: Build
+
+on:
+ push:
+ workflow_dispatch:
+
+jobs:
+ buildWindows:
+ name: Build Windows Application
+ runs-on: windows-latest
+
+ steps:
+ - name: Download Source Code
+ uses: actions/checkout@v4
+
+ - name: Setup Haxe
+ uses: krdlab/setup-haxe@master
+ with:
+ haxe-version: 4.3.7
+
+ - name: Retrieve Haxelib Cache
+ id: windows-haxelib-cache
+ uses: actions/cache@v4
+ with:
+ path: |
+ C:/haxelib/**
+ .haxelib/**
+ key: ${{ runner.os }}-haxelib-cache
+
+ - name: Install Haxe Libraries using HxPKG
+ run: |
+ haxelib install hxpkg --quiet
+ haxelib run hxpkg install --quiet --update
+
+ - name: Compile Application
+ run: haxelib run lime build windows
+
+ - name: Upload Artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: TechNotDrip-Engine_WINDOWS
+ path: export/release/windows/bin/
+
+ buildMacOS:
+ name: Build MacOS Application
+ runs-on: macos-latest
+
+ steps:
+ - name: Download Source Code
+ uses: actions/checkout@v4
+
+ - name: Setup Haxe
+ uses: krdlab/setup-haxe@master
+ with:
+ haxe-version: 4.3.7
+
+ - name: Retrieve Haxelib Cache
+ id: macos-haxelib-cache
+ uses: actions/cache@v4
+ with:
+ path: |
+ ~/haxelib/**
+ .haxelib/**
+ key: ${{ runner.os }}-haxelib-cache
+
+ - name: Install Haxe Libraries using HxPKG
+ run: |
+ haxelib install hxpkg --quiet
+ haxelib run hxpkg install --quiet --update
+
+ - name: Compile Application
+ run: haxelib run lime build macos
+
+ - name: Upload Artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: TechNotDrip-Engine_MACOS
+ path: export/release/macos/bin/
+
+ buildLinux:
+ name: Build Linux Application
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Download Source Code
+ uses: actions/checkout@v4
+
+ - name: Setup Haxe
+ uses: krdlab/setup-haxe@master
+ with:
+ haxe-version: 4.3.7
+
+ - name: Retrieve Haxelib Cache
+ id: linux-haxelib-cache
+ uses: actions/cache@v4
+ with:
+ path: |
+ ~/haxelib/**
+ .haxelib/**
+ key: ${{ runner.os }}-haxelib-cache
+
+ - name: Install Haxe Libraries using HxPKG
+ run: |
+ sudo apt install -qq libvlccore-dev libvlc-dev -y
+ haxelib install hxpkg --quiet
+ haxelib run hxpkg install --quiet --update
+
+ - name: Compile Application
+ run: haxelib run lime build linux
+
+ - name: Upload Artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: TechNotDrip-Engine_LINUX
+ path: export/release/linux/bin/
+
+ buildAndroid:
+ name: Build Android Application
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Download Source Code
+ uses: actions/checkout@v4
+
+ - name: Setup Haxe
+ uses: krdlab/setup-haxe@master
+ with:
+ haxe-version: 4.3.7
+
+ - name: Setup Android NDK
+ uses: nttld/setup-ndk@v1
+ id: ndk
+ with:
+ ndk-version: r21e
+
+ - name: Setup Java
+ uses: actions/setup-java@v4
+ with:
+ distribution: 'oracle'
+ java-version: '17'
+
+ - name: Retrieve Haxelib Cache
+ id: android-haxelib-cache
+ uses: actions/cache@v4
+ with:
+ path: |
+ ~/haxelib/**
+ .haxelib/**
+ key: android-haxelib-cache
+
+ - name: Install Haxe Libraries using HxPKG
+ run: |
+ sudo apt install libvlccore-dev libvlc-dev -y -q
+ haxelib install hxpkg --quiet
+ haxelib run hxpkg install --quiet --update
+
+ - name: Configure Android
+ run: |
+ haxelib run lime config ANDROID_SDK $ANDROID_HOME
+ haxelib run lime config ANDROID_NDK_ROOT ${{ steps.ndk.outputs.ndk-path }}
+ haxelib run lime config JAVA_HOME $JAVA_HOME
+ haxelib run lime config ANDROID_SETUP true
+
+ - name: Compile Application
+ run: haxelib run lime build android
+
+ - name: Upload Artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: TechNotDrip-Engine_ANDROID
+ path: export/release/android/bin/app/build/outputs/apk/debug/*.apk
+
+ buildiOS:
+ name: Build iOS Application
+ runs-on: macos-latest
+
+ steps:
+ - name: Download Source Code
+ uses: actions/checkout@v4
+
+ - name: Setup Haxe
+ uses: krdlab/setup-haxe@master
+ with:
+ haxe-version: 4.3.7
+
+ - name: Retrieve Haxelib Cache
+ id: ios-haxelib-cache
+ uses: actions/cache@v4
+ with:
+ path: |
+ ~/haxelib/**
+ .haxelib/**
+ key: ios-haxelib-cache
+
+ - name: Install Haxe Libraries using HxPKG
+ run: |
+ haxelib install hxpkg --quiet
+ haxelib run hxpkg install --quiet --update
+
+ - name: Compile Application
+ run: haxelib run lime build ios -nosign
+
+ - name: Zip up IPA File
+ run: |
+ cd export/release/ios/build/Release-iphoneos
+ mkdir Payload
+ mv *.app Payload
+ zip -r TechNotDrip.ipa Payload
+
+ - name: Upload Artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: TechNotDrip-Engine_IOS
+ path: export/release/ios/build/Release-iphoneos/*.ipa
diff --git a/.gitignore b/.gitignore
index be46446..d37914c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
RECOVER_*.fla
.haxelib/
+.haxelsp/
.vs/
.vscode/
@@ -10,4 +11,7 @@ RECOVER_*.fla
!.vscode/settings.json
!.vscode/tasks.json
-export/
\ No newline at end of file
+docs/dox/
+dump/
+export/
+.macrocache
\ No newline at end of file
diff --git a/.hxpkg b/.hxpkg
new file mode 100644
index 0000000..0b18771
--- /dev/null
+++ b/.hxpkg
@@ -0,0 +1,77 @@
+[
+ {
+ "profile": "default",
+ "pkgs": [
+ {
+ "name": "lime",
+ "version": "8.2.2"
+ },
+ {
+ "name": "openfl",
+ "version": "9.4.1"
+ },
+ {
+ "name": "flixel",
+ "version": "6.1.0"
+ },
+ {
+ "name": "flixel-addons",
+ "link": "https://github.com/TilNotDrip/flixel-addons",
+ "branch": "technotdrip-engine"
+ },
+ {
+ "name": "extension-androidtools",
+ "version": "2.1.1"
+ },
+ {
+ "name": "flixel-controls",
+ "link": "https://github.com/Geokureli/FlxControls",
+ "branch": "aa6aa1e8bf50c071907f3282696685ce60418725"
+ },
+ {
+ "name": "flxanimate",
+ "link": "https://github.com/Dot-Stuff/flxanimate",
+ "branch": "ef85c132044d897a04c5008da29674d88f83c4d6"
+ },
+ {
+ "name": "format",
+ "version": "3.5.0"
+ },
+ {
+ "name": "funkin.vis",
+ "link": "https://github.com/FunkinCrew/funkVis",
+ "branch": "1966f8fbbbc509ed90d4b520f3c49c084fc92fd6"
+ },
+ {
+ "name": "grig.audio",
+ "link": "https://gitlab.com/haxe-grig/grig.audio.git",
+ "branch": "57f5d47f2533fd0c3dcd025a86cb86c0dfa0b6d2"
+ },
+ {
+ "name": "hxcpp",
+ "link": "https://github.com/HaxeFoundation/hxcpp",
+ "branch": "86d4b1a07ddadf162a0c48487f1e1b17d7bbcd64"
+ },
+ {
+ "name": "hscript",
+ "version": "2.6.0"
+ },
+ {
+ "name": "hxdiscord_rpc",
+ "version": "1.3.0"
+ },
+ {
+ "name": "hxp",
+ "version": "1.3.0"
+ },
+ {
+ "name": "thx.core",
+ "version": "0.44.0"
+ },
+ {
+ "name": "thx.semver",
+ "version": "0.2.2"
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index 89e20ed..cf942c7 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -1,6 +1,7 @@
{
"recommendations": [
"openfl.lime-vscode-extension",
+ "vshaxe.haxe-extension-pack",
"redhat.vscode-xml"
]
}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 3279906..a16c630 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -9,5 +9,8 @@
"source.sortImports": "explicit"
}
},
- "haxe.enableExtendedIndentation": true
+ "haxe.enableExtendedIndentation": true,
+ "githubPullRequests.ignoredPullRequestBranches": [
+ "alpha"
+ ]
}
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e72bfdd
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
\ No newline at end of file
diff --git a/Project.hxp b/Project.hxp
index a63e89a..1387f6f 100644
--- a/Project.hxp
+++ b/Project.hxp
@@ -1,7 +1,9 @@
package;
+import haxe.Exception;
import hxp.*;
import lime.tools.*;
+import sys.io.Process;
using StringTools;
@@ -12,13 +14,49 @@ using StringTools;
*/
class Project extends HXProject
{
+ /**
+ * The version of TechNotDrip Engine.
+ */
+ public final TECHNOTDRIP_VERSION:String = '0.1.0';
+
+ /**
+ * `-DFUNKIN_DISCORD_RPC`
+ * Whether the game should have Discord RPC.
+ * Developers can set this by checking the flag above.
+ */
+ public final FUNKIN_DISCORD_RPC:FeatureFlag = 'FUNKIN_DISCORD_RPC';
+
+ /**
+ * `-DFUNKIN_DOX_GENERATION`
+ * Whether the game should be compiled into dox instead.
+ * Developers can set this by checking the flag above.
+ */
+ public final FUNKIN_DOX_GENERATION:FeatureFlag = 'FUNKIN_DOX_GENERATION';
+
+ /**
+ * `-DFUNKIN_GIT_DETAILS`
+ * Whether the git hashes/branches should be shown in MenuState.
+ * Developers can set this by checking the flag above.
+ */
+ public final FUNKIN_GIT_DETAILS:FeatureFlag = 'FUNKIN_GIT_DETAILS';
+
+ /**
+ * `-DFUNKIN_ASSETS_FORWARDING`
+ * Whether the game should forward its asset fetching to the root of the repository.
+ * Developers can set this by checking the flag above.
+ */
+ public final FUNKIN_ASSETS_FORWARDING:FeatureFlag = 'FUNKIN_ASSETS_FORWARDING';
+
public function new()
{
super();
+ setenv('HAXEPATH', './'); // Fixes an issue for haxelibs that use native C++ files until Haxe 5 releases.
+
setupApplicationSettings();
setupWindowSettings();
setupPathSettings();
+ setupFeatureFlags();
setupHaxelibs();
setupHaxeDefines();
setupHaxeFlags();
@@ -27,12 +65,13 @@ class Project extends HXProject
public function setupApplicationSettings():Void
{
meta.title = 'Friday Night Funkin\': TechNotDrip Engine';
+ meta.version = TECHNOTDRIP_VERSION;
+ meta.packageName = 'org.tilnotdrip.technotdrip';
+ meta.company = 'TilNotDrip';
+
app.file = 'TechNotDrip';
app.main = 'Main';
- meta.version = '0.1.0';
- meta.company = 'TilNotDrip';
app.preloader = 'flixel.system.FlxPreloader';
- app.swfVersion = 11.8;
}
public function setupWindowSettings():Void
@@ -59,14 +98,16 @@ class Project extends HXProject
{
window.orientation = LANDSCAPE;
window.fullscreen = false;
- window.width = 0;
- window.height = 0;
+ window.resizable = false;
+ window.allowShaders = true;
+ window.requireShaders = true;
+ window.allowHighDPI = true;
}
}
public function setupPathSettings():Void
{
- app.path = getBuildDirectory();
+ app.path = 'export/' + ((debug) ? 'debug' : 'release');
var excludeList:Array = [];
excludeList.push((platformType == WEB) ? 'ogg' : 'mp3');
@@ -74,59 +115,282 @@ class Project extends HXProject
// TODO: Maybe scan the entire assets folder instead like base fnf.
includeAssets("assets", "assets", ['*'], excludeList);
- icons.push(new Icon('extras/appicons/icon16.png', 16));
- icons.push(new Icon('extras/appicons/icon32.png', 32));
- icons.push(new Icon('extras/appicons/icon64.png', 64));
- icons.push(new Icon('extras/appicons/icon.png'));
+ addIcon('extras/appicons/icon16.png', 16);
+ addIcon('extras/appicons/icon32.png', 32);
+ addIcon('extras/appicons/icon64.png', 64);
+ addIcon('extras/appicons/icon.png');
sources.push('src');
}
- public function setupHaxelibs():Void
+ public function setupFeatureFlags():Void
{
- haxelibs.push(new Haxelib('lime', '8.2.1'));
- haxelibs.push(new Haxelib('openfl', '9.4.0'));
- haxelibs.push(new Haxelib('flixel', '5.8.0'));
- haxelibs.push(new Haxelib('flixel-addons', '3.2.3'));
+ // The second parameter is the default value unless overridden!
+ FUNKIN_DISCORD_RPC.apply(this, platformType == DESKTOP && haxedefs.get('cpp')); // Will be enabled if its on desktop (windows, linux, mac)!
+ FUNKIN_DOX_GENERATION.apply(this, false); // Will always be false unless you wanna make a documentation website.
+ FUNKIN_GIT_DETAILS.apply(this, isGitInitialized()); // Only show details when this is a git repository.
+ FUNKIN_ASSETS_FORWARDING.apply(this, platformType == DESKTOP && debug);
+ }
- if (debug)
- haxelibs.push(new Haxelib('hxcpp-debug-server', '1.2.4'));
+ public function setupHaxelibs():Void
+ {
+ addHaxelib('lime', '8.2.2');
+ addHaxelib('openfl', '9.4.1');
+ addHaxelib('flixel', '6.1.0');
+ addHaxelib('flixel-addons', 'git');
+ addHaxelib('flxanimate', 'git');
+ addHaxelib('flixel-controls', 'git');
+ addHaxelib('extension-androidtools', '2.1.1', platformType == MOBILE && haxedefs.get('android'));
+ addHaxelib('hxcpp-debug-server', '1.2.4', debug);
+ addHaxelib('hxdiscord_rpc', '1.3.0', FUNKIN_DISCORD_RPC.isEnabled(this));
+ addHaxelib('thx.core', '0.44.0');
+ addHaxelib('thx.semver', '0.2.2');
+ addHaxelib('funkin.vis', 'git');
+ addHaxelib('grig.audio');
}
public function setupHaxeDefines():Void
{
- if (!debug)
- haxedefs.set('FLX_NO_DEBUG', '');
+ addHaxeDefine('doc-gen', FUNKIN_DOX_GENERATION.isEnabled(this));
+ addHaxeDefine('FLX_CUSTOM_ASSETS_DIRECTORY', 'assets', FUNKIN_ASSETS_FORWARDING.isEnabled(this));
+ addHaxeDefine('FLX_NO_DEBUG', !debug);
+ addHaxeDefine('FLX_NO_FOCUS_LOST_SCREEN');
+ addHaxeDefine('FLX_NO_HEALTH');
+ addHaxeDefine('FLX_NO_KEYBOARD', platformType == MOBILE);
+ addHaxeDefine('FLX_NO_MOUSE', platformType == MOBILE);
+ addHaxeDefine('FLX_NO_TOUCH', platformType != MOBILE);
+ addHaxeDefine('message.reporting', 'pretty');
+ addHaxeDefine('NAPE_RELEASE_BUILD', !debug);
- haxedefs.set('FLX_NO_HEALTH', '');
+ if (FUNKIN_GIT_DETAILS.isEnabled(this))
+ {
+ addHaxeDefine('TND_GIT_HASH', getGitHash());
+ addHaxeDefine('TND_GIT_BRANCH', getGitBranch());
+ addHaxeDefine('TND_GIT_MODIFIED', getGitModified());
+ }
- if (platformType == MOBILE)
+ if (haxedefs.get('android'))
{
- haxedefs.set('FLX_NO_KEYBOARD', '');
- haxedefs.set('FLX_NO_MOUSE', '');
+ config.set("android.gradle-version", '7.4.2');
+ config.set("android.gradle-plugin", "7.3.1");
+ config.set('android.minimum-sdk-version', 16);
+ config.set('android.target-sdk-version', 29);
}
+ }
- if (platformType == DESKTOP)
+ public function setupHaxeFlags():Void
+ {
+ addHaxeFlag('-dce no');
+ addHaxeFlag("--macro include('funkin')");
+ addHaxeFlag("--macro include('flixel', true, ['flixel.addons.editors.spine.*', 'flixel.addons.nape.*', 'flixel.system.macros.*', 'flixel.addons.tile.FlxRayCastTilemap'])");
+ addHaxeFlag("--macro addMetadata('@:build(funkin.macros.ZProperty.buildZProperty())', 'flixel.FlxBasic')");
+ addHaxeFlag("--macro addMetadata('@:build(funkin.macros.ZProperty.buildRearrangeFunction())', 'flixel.group.FlxTypedGroup')");
+ addHaxeFlag('--no-output', FUNKIN_DOX_GENERATION.isEnabled(this));
+ addHaxeFlag('-xml docs/dox/' + Std.string(target).toLowerCase() + '.xml', FUNKIN_DOX_GENERATION.isEnabled(this));
+ }
+
+ public function addHaxelib(name:String, version:String = '', conditions:Bool = true):Void
+ {
+ if (!conditions)
+ return;
+
+ haxelibs.push(new Haxelib(name, version));
+ }
+
+ public function addHaxeDefine(name:String, value:String = '', conditions:Bool = true):Void
+ {
+ if (!conditions)
+ return;
+
+ haxedefs.set(name, value);
+ }
+
+ public function addHaxeFlag(name:String, conditions:Bool = true):Void
+ {
+ if (!conditions)
+ return;
+
+ haxeflags.push(name);
+ }
+
+ public function addIcon(path:String, ?size:Int):Void
+ {
+ icons.push(new Icon(path, size));
+ }
+
+ function isGitInitialized():Bool
+ {
+ var gitProcess:Process = new Process('git', ['status']);
+
+ var exitCode:Int = gitProcess.exitCode();
+ gitProcess.close();
+
+ return exitCode == 0;
+ }
+
+ function getGitHash():String
+ {
+ var gitProcess:Process = new Process('git', ['rev-parse', 'HEAD']);
+
+ var gitHash:String = gitProcess.stdout.readLine().trim();
+ var exitCode:Int = gitProcess.exitCode();
+ gitProcess.close();
+
+ if (exitCode != 0)
{
- haxedefs.set('FLX_NO_TOUCH', '');
+ trace('[WARNING] Unable to get current git repository hash.');
+ return null;
}
- haxedefs.set('message.reporting', 'pretty');
+ return gitHash;
+ }
+
+ function getGitBranch():String
+ {
+ var gitProcess:Process = new Process('git', ['rev-parse', '--abbrev-ref', 'HEAD']);
+
+ var gitBranch:String = gitProcess.stdout.readLine().trim();
+ var exitCode:Int = gitProcess.exitCode();
+ gitProcess.close();
- if (!debug)
- haxedefs.set('NAPE_RELEASE_BUILD', '');
+ if (exitCode != 0)
+ {
+ trace('[WARNING] Unable to get current git repository branch.');
+ return null;
+ }
+
+ return gitBranch;
}
- public function setupHaxeFlags():Void
+ function getGitModified():Bool
+ {
+ var gitProcess:Process = new Process('git', ['status', '--porcelain']);
+
+ var gitModifiedFiles:String = gitProcess.stdout.readLine().trim();
+ var exitCode:Int = gitProcess.exitCode();
+ gitProcess.close();
+
+ if (exitCode != 0)
+ {
+ trace('[WARNING] Unable to get current git repository status.');
+ return false;
+ }
+
+ return gitModifiedFiles.length > 0;
+ }
+}
+
+/**
+ * An object representing a feature flag, which can be enabled or disabled.
+ * Includes features such as automatic generation of compile defines and inversion.
+ */
+abstract FeatureFlag(String)
+{
+ static final INVERSE_PREFIX:String = "NO_";
+
+ public function new(input:String)
+ {
+ this = input;
+ }
+
+ @:from
+ public static function fromString(input:String):FeatureFlag
+ {
+ return new FeatureFlag(input);
+ }
+
+ /**
+ * Enable/disable a feature flag if it is unset, and handle the inverse flag.
+ * Doesn't override a feature flag that was set explicitly.
+ * @param enableByDefault Whether to enable this feature flag if it is unset.
+ */
+ public function apply(project:Project, enableByDefault:Bool = false):Void
+ {
+ // TODO: Name this function better?
+
+ if (isEnabled(project))
+ {
+ // If this flag was already enabled, disable the inverse.
+ getInverse().disable(project, false);
+ }
+ else if (getInverse().isEnabled(project))
+ {
+ // If the inverse flag was already enabled, disable this flag.
+ disable(project, false);
+ }
+ else
+ {
+ if (enableByDefault)
+ {
+ // Enable this flag if it was unset, and disable the inverse.
+ enable(project, true);
+ }
+ else
+ {
+ // Disable this flag if it was unset, and enable the inverse.
+ disable(project, true);
+ }
+ }
+ }
+
+ /**
+ * Enable this feature flag by setting the appropriate compile define.
+ *
+ * @param project The project to modify.
+ * @param andInverse Also disable the feature flag's inverse.
+ */
+ public function enable(project:Project, andInverse:Bool = true)
+ {
+ project.haxedefs.set(this, "");
+ if (andInverse)
+ {
+ getInverse().disable(project, false);
+ }
+ }
+
+ /**
+ * Disable this feature flag by removing the appropriate compile define.
+ *
+ * @param project The project to modify.
+ * @param andInverse Also enable the feature flag's inverse.
+ */
+ public function disable(project:Project, andInverse:Bool = true)
+ {
+ project.haxedefs.remove(this);
+ if (andInverse)
+ {
+ getInverse().enable(project, false);
+ }
+ }
+
+ /**
+ * Query if this feature flag is enabled.
+ * @param project The project to query.
+ */
+ public function isEnabled(project:Project):Bool
+ {
+ // Check both Haxedefs and Defines for this flag.
+ return project.haxedefs.exists(this) || project.defines.exists(this);
+ }
+
+ /**
+ * Query if this feature flag's inverse is enabled.
+ */
+ public function isDisabled(project:Project):Bool
{
- haxeflags.push('-dce no');
- haxeflags.push("--macro include('funkin')");
- haxeflags.push("--macro addMetadata('@:build(funkin.macros.ZProperty.build())', 'flixel.FlxBasic')");
+ return getInverse().isEnabled(project);
}
- function getBuildDirectory():String
+ /**
+ * Return the inverse of this feature flag.
+ * @return A new feature flag that is the inverse of this one.
+ */
+ public function getInverse():FeatureFlag
{
- var buildDir:String = 'export/' + ((debug) ? 'debug' : 'release');
- return buildDir;
+ if (this.startsWith(INVERSE_PREFIX))
+ {
+ return this.substring(INVERSE_PREFIX.length);
+ }
+ return INVERSE_PREFIX + this;
}
}
diff --git a/assets/config/credits.xml b/assets/config/credits.xml
new file mode 100644
index 0000000..66435a0
--- /dev/null
+++ b/assets/config/credits.xml
@@ -0,0 +1,29 @@
+
+
+
+ i coded 50% of TechNotDrip Engine.
+
+ https://techniktil.tilnotdrip.org
+ TechnikTil
+ https://twitter.com/TechnikTil
+ https://youtube.com/user/TechnikTil
+ https://bsky.app/profile/techniktil.github.io/
+
+
+
+ coded everything thats actually important lol
+
+ https://crushernotdrip.tilnotdrip.org
+ CrusherNotDrip
+ https://twitter.com/CrusherNotDrip
+ https://bsky.app/profile/crushernotdrip.tilnotdrip.org/
+
+
+
+ drew everything final in this engine
+
+ https://twitter.com/gameboy1969
+ https://www.dominos.com
+
+
+
diff --git a/assets/config/discord.json b/assets/config/discord.json
new file mode 100644
index 0000000..4495e53
--- /dev/null
+++ b/assets/config/discord.json
@@ -0,0 +1,4 @@
+{
+ "id": "1323401168705163355",
+ "iconKey": "logo"
+}
\ No newline at end of file
diff --git a/assets/gameplay/hud/funkin/healthBar.png b/assets/gameplay/hud/funkin/healthBar.png
new file mode 100644
index 0000000..8bfec94
Binary files /dev/null and b/assets/gameplay/hud/funkin/healthBar.png differ
diff --git a/assets/gameplay/hud/funkin/strumline/noteSplashes.png b/assets/gameplay/hud/funkin/strumline/noteSplashes.png
new file mode 100644
index 0000000..53e5630
Binary files /dev/null and b/assets/gameplay/hud/funkin/strumline/noteSplashes.png differ
diff --git a/assets/gameplay/hud/funkin/strumline/noteSplashes.xml b/assets/gameplay/hud/funkin/strumline/noteSplashes.xml
new file mode 100644
index 0000000..3252f46
--- /dev/null
+++ b/assets/gameplay/hud/funkin/strumline/noteSplashes.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/hud/funkin/strumline/noteStrumline.png b/assets/gameplay/hud/funkin/strumline/noteStrumline.png
new file mode 100644
index 0000000..c71af42
Binary files /dev/null and b/assets/gameplay/hud/funkin/strumline/noteStrumline.png differ
diff --git a/assets/gameplay/hud/funkin/strumline/noteStrumline.xml b/assets/gameplay/hud/funkin/strumline/noteStrumline.xml
new file mode 100644
index 0000000..2ead43a
--- /dev/null
+++ b/assets/gameplay/hud/funkin/strumline/noteStrumline.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/hud/funkin/strumline/notes.png b/assets/gameplay/hud/funkin/strumline/notes.png
new file mode 100644
index 0000000..fc529c9
Binary files /dev/null and b/assets/gameplay/hud/funkin/strumline/notes.png differ
diff --git a/assets/gameplay/hud/funkin/strumline/notes.xml b/assets/gameplay/hud/funkin/strumline/notes.xml
new file mode 100644
index 0000000..c8e4782
--- /dev/null
+++ b/assets/gameplay/hud/funkin/strumline/notes.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/hud/funkin/strumline/opponent.json b/assets/gameplay/hud/funkin/strumline/opponent.json
new file mode 100644
index 0000000..bdd54c2
--- /dev/null
+++ b/assets/gameplay/hud/funkin/strumline/opponent.json
@@ -0,0 +1,8 @@
+{
+ "computerControlled": true,
+ "renderStrumline": true,
+ "strumlinePosition": "left",
+ "renderRatings": false,
+ "renderIcon": true,
+ "rgbToUse": "player"
+}
\ No newline at end of file
diff --git a/assets/gameplay/hud/funkin/strumline/player.json b/assets/gameplay/hud/funkin/strumline/player.json
new file mode 100644
index 0000000..9b2faea
--- /dev/null
+++ b/assets/gameplay/hud/funkin/strumline/player.json
@@ -0,0 +1,8 @@
+{
+ "computerControlled": false,
+ "renderStrumline": true,
+ "strumlinePosition": "right",
+ "renderRatings": true,
+ "renderIcon": true,
+ "rgbToUse": "player"
+}
\ No newline at end of file
diff --git a/assets/gameplay/hud/funkin/strumline/spectator.json b/assets/gameplay/hud/funkin/strumline/spectator.json
new file mode 100644
index 0000000..e9760d1
--- /dev/null
+++ b/assets/gameplay/hud/funkin/strumline/spectator.json
@@ -0,0 +1,8 @@
+{
+ "computerControlled": true,
+ "renderStrumline": false,
+ "strumlinePosition": "left",
+ "renderRatings": false,
+ "renderIcon": false,
+ "rgbToUse": "player"
+}
\ No newline at end of file
diff --git a/assets/gameplay/hud/funkin/strumline/sustainCover.png b/assets/gameplay/hud/funkin/strumline/sustainCover.png
new file mode 100644
index 0000000..5acfec4
Binary files /dev/null and b/assets/gameplay/hud/funkin/strumline/sustainCover.png differ
diff --git a/assets/gameplay/hud/funkin/strumline/sustainCover.xml b/assets/gameplay/hud/funkin/strumline/sustainCover.xml
new file mode 100644
index 0000000..95c5bc7
--- /dev/null
+++ b/assets/gameplay/hud/funkin/strumline/sustainCover.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/icons/bf-old/data.json b/assets/gameplay/icons/bf-old/data.json
new file mode 100644
index 0000000..c694cc3
--- /dev/null
+++ b/assets/gameplay/icons/bf-old/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#E9FF48",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/bf-old/texture.png b/assets/gameplay/icons/bf-old/texture.png
new file mode 100644
index 0000000..28cf677
Binary files /dev/null and b/assets/gameplay/icons/bf-old/texture.png differ
diff --git a/assets/gameplay/icons/bf-pixel-old/data.json b/assets/gameplay/icons/bf-pixel-old/data.json
new file mode 100644
index 0000000..d1c6e07
--- /dev/null
+++ b/assets/gameplay/icons/bf-pixel-old/data.json
@@ -0,0 +1,26 @@
+{
+ "resolution": [150, 150],
+ "color": "#FFF97A",
+ "antialiasing": false,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 0,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/bf-pixel-old/texture.png b/assets/gameplay/icons/bf-pixel-old/texture.png
new file mode 100644
index 0000000..692821d
Binary files /dev/null and b/assets/gameplay/icons/bf-pixel-old/texture.png differ
diff --git a/assets/gameplay/icons/bf-pixel/data.json b/assets/gameplay/icons/bf-pixel/data.json
new file mode 100644
index 0000000..805cb56
--- /dev/null
+++ b/assets/gameplay/icons/bf-pixel/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [32, 32],
+ "color": "#7BD6F6",
+ "antialiasing": false,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/bf-pixel/texture.png b/assets/gameplay/icons/bf-pixel/texture.png
new file mode 100644
index 0000000..ad11217
Binary files /dev/null and b/assets/gameplay/icons/bf-pixel/texture.png differ
diff --git a/assets/gameplay/icons/bf/data.json b/assets/gameplay/icons/bf/data.json
new file mode 100644
index 0000000..df5a38f
--- /dev/null
+++ b/assets/gameplay/icons/bf/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#31B0D1",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/bf/texture.png b/assets/gameplay/icons/bf/texture.png
new file mode 100644
index 0000000..5c749eb
Binary files /dev/null and b/assets/gameplay/icons/bf/texture.png differ
diff --git a/assets/gameplay/icons/dad/data.json b/assets/gameplay/icons/dad/data.json
new file mode 100644
index 0000000..4b619c6
--- /dev/null
+++ b/assets/gameplay/icons/dad/data.json
@@ -0,0 +1,26 @@
+{
+ "resolution": [150, 150],
+ "color": "#AF66CE",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 0,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/dad/texture.png b/assets/gameplay/icons/dad/texture.png
new file mode 100644
index 0000000..914ddaa
Binary files /dev/null and b/assets/gameplay/icons/dad/texture.png differ
diff --git a/assets/gameplay/icons/darnell/data.json b/assets/gameplay/icons/darnell/data.json
new file mode 100644
index 0000000..b81d0f9
--- /dev/null
+++ b/assets/gameplay/icons/darnell/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#735EB0",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/darnell/texture.png b/assets/gameplay/icons/darnell/texture.png
new file mode 100644
index 0000000..ce82fe4
Binary files /dev/null and b/assets/gameplay/icons/darnell/texture.png differ
diff --git a/assets/gameplay/icons/face/data.json b/assets/gameplay/icons/face/data.json
new file mode 100644
index 0000000..8125515
--- /dev/null
+++ b/assets/gameplay/icons/face/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#A1A1A1",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/face/texture.png b/assets/gameplay/icons/face/texture.png
new file mode 100644
index 0000000..cea4eff
Binary files /dev/null and b/assets/gameplay/icons/face/texture.png differ
diff --git a/assets/gameplay/icons/gf/data.json b/assets/gameplay/icons/gf/data.json
new file mode 100644
index 0000000..f5f8401
--- /dev/null
+++ b/assets/gameplay/icons/gf/data.json
@@ -0,0 +1,26 @@
+{
+ "resolution": [150, 150],
+ "color": "#A5004D",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 0,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/gf/texture.png b/assets/gameplay/icons/gf/texture.png
new file mode 100644
index 0000000..d274919
Binary files /dev/null and b/assets/gameplay/icons/gf/texture.png differ
diff --git a/assets/gameplay/icons/mom/data.json b/assets/gameplay/icons/mom/data.json
new file mode 100644
index 0000000..ae9facc
--- /dev/null
+++ b/assets/gameplay/icons/mom/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#D8558E",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/mom/texture.png b/assets/gameplay/icons/mom/texture.png
new file mode 100644
index 0000000..7da5ef2
Binary files /dev/null and b/assets/gameplay/icons/mom/texture.png differ
diff --git a/assets/gameplay/icons/monster/data.json b/assets/gameplay/icons/monster/data.json
new file mode 100644
index 0000000..8142463
--- /dev/null
+++ b/assets/gameplay/icons/monster/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#F3FF6E",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/monster/texture.png b/assets/gameplay/icons/monster/texture.png
new file mode 100644
index 0000000..f02c3dc
Binary files /dev/null and b/assets/gameplay/icons/monster/texture.png differ
diff --git a/assets/gameplay/icons/parents/data.json b/assets/gameplay/icons/parents/data.json
new file mode 100644
index 0000000..4b619c6
--- /dev/null
+++ b/assets/gameplay/icons/parents/data.json
@@ -0,0 +1,26 @@
+{
+ "resolution": [150, 150],
+ "color": "#AF66CE",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 0,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/parents/texture.png b/assets/gameplay/icons/parents/texture.png
new file mode 100644
index 0000000..c754159
Binary files /dev/null and b/assets/gameplay/icons/parents/texture.png differ
diff --git a/assets/gameplay/icons/pico-pixel/data.json b/assets/gameplay/icons/pico-pixel/data.json
new file mode 100644
index 0000000..b1bdf62
--- /dev/null
+++ b/assets/gameplay/icons/pico-pixel/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [32, 32],
+ "color": "#88FF58",
+ "antialiasing": false,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/pico-pixel/texture.png b/assets/gameplay/icons/pico-pixel/texture.png
new file mode 100644
index 0000000..4f1e604
Binary files /dev/null and b/assets/gameplay/icons/pico-pixel/texture.png differ
diff --git a/assets/gameplay/icons/pico/data.json b/assets/gameplay/icons/pico/data.json
new file mode 100644
index 0000000..9e3fa2b
--- /dev/null
+++ b/assets/gameplay/icons/pico/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#B7D855",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/pico/texture.png b/assets/gameplay/icons/pico/texture.png
new file mode 100644
index 0000000..8dc753e
Binary files /dev/null and b/assets/gameplay/icons/pico/texture.png differ
diff --git a/assets/gameplay/icons/senpai-angry/data.json b/assets/gameplay/icons/senpai-angry/data.json
new file mode 100644
index 0000000..f96b4f6
--- /dev/null
+++ b/assets/gameplay/icons/senpai-angry/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [32, 32],
+ "color": "#FFAA6F",
+ "antialiasing": false,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/senpai-angry/texture.png b/assets/gameplay/icons/senpai-angry/texture.png
new file mode 100644
index 0000000..e604399
Binary files /dev/null and b/assets/gameplay/icons/senpai-angry/texture.png differ
diff --git a/assets/gameplay/icons/senpai/data.json b/assets/gameplay/icons/senpai/data.json
new file mode 100644
index 0000000..f96b4f6
--- /dev/null
+++ b/assets/gameplay/icons/senpai/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [32, 32],
+ "color": "#FFAA6F",
+ "antialiasing": false,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/senpai/texture.png b/assets/gameplay/icons/senpai/texture.png
new file mode 100644
index 0000000..ffdf878
Binary files /dev/null and b/assets/gameplay/icons/senpai/texture.png differ
diff --git a/assets/gameplay/icons/spirit/data.json b/assets/gameplay/icons/spirit/data.json
new file mode 100644
index 0000000..6654947
--- /dev/null
+++ b/assets/gameplay/icons/spirit/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [32, 32],
+ "color": "#FF3C6E",
+ "antialiasing": false,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/spirit/texture.png b/assets/gameplay/icons/spirit/texture.png
new file mode 100644
index 0000000..19c3085
Binary files /dev/null and b/assets/gameplay/icons/spirit/texture.png differ
diff --git a/assets/gameplay/icons/spooky/data.json b/assets/gameplay/icons/spooky/data.json
new file mode 100644
index 0000000..223457d
--- /dev/null
+++ b/assets/gameplay/icons/spooky/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#B4B4B4",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/spooky/texture.png b/assets/gameplay/icons/spooky/texture.png
new file mode 100644
index 0000000..d7e77a8
Binary files /dev/null and b/assets/gameplay/icons/spooky/texture.png differ
diff --git a/assets/gameplay/icons/tankman-bloody/data.json b/assets/gameplay/icons/tankman-bloody/data.json
new file mode 100644
index 0000000..1662710
--- /dev/null
+++ b/assets/gameplay/icons/tankman-bloody/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#E1E1E1",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/tankman-bloody/texture.png b/assets/gameplay/icons/tankman-bloody/texture.png
new file mode 100644
index 0000000..d7d2875
Binary files /dev/null and b/assets/gameplay/icons/tankman-bloody/texture.png differ
diff --git a/assets/gameplay/icons/tankman/data.json b/assets/gameplay/icons/tankman/data.json
new file mode 100644
index 0000000..1662710
--- /dev/null
+++ b/assets/gameplay/icons/tankman/data.json
@@ -0,0 +1,40 @@
+{
+ "resolution": [150, 150],
+ "color": "#E1E1E1",
+ "antialiasing": true,
+ "shouldBop": true,
+
+ "animations": [
+ {
+ "name": "normal",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [0],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ },
+ {
+ "name": "lose",
+ "prefix": "",
+ "framerate": 24,
+ "indices": [1],
+ "looped": false,
+ "flipX": false,
+ "flipY": false
+ }
+ ],
+
+ "healthAnimations": [
+ {
+ "maximumHealth": 19,
+ "minimumHealth": 0,
+ "anim": "lose"
+ },
+ {
+ "maximumHealth": 100,
+ "minimumHealth": 20,
+ "anim": "normal"
+ }
+ ]
+}
diff --git a/assets/gameplay/icons/tankman/texture.png b/assets/gameplay/icons/tankman/texture.png
new file mode 100644
index 0000000..b84e4de
Binary files /dev/null and b/assets/gameplay/icons/tankman/texture.png differ
diff --git a/assets/gameplay/missnote1.ogg b/assets/gameplay/missnote1.ogg
new file mode 100644
index 0000000..b8bfc8e
Binary files /dev/null and b/assets/gameplay/missnote1.ogg differ
diff --git a/assets/gameplay/missnote2.ogg b/assets/gameplay/missnote2.ogg
new file mode 100644
index 0000000..c38c484
Binary files /dev/null and b/assets/gameplay/missnote2.ogg differ
diff --git a/assets/gameplay/missnote3.ogg b/assets/gameplay/missnote3.ogg
new file mode 100644
index 0000000..59506db
Binary files /dev/null and b/assets/gameplay/missnote3.ogg differ
diff --git a/assets/gameplay/songs/2hot/Inst.ogg b/assets/gameplay/songs/2hot/Inst.ogg
new file mode 100644
index 0000000..4d73eb4
Binary files /dev/null and b/assets/gameplay/songs/2hot/Inst.ogg differ
diff --git a/assets/gameplay/songs/2hot/Voices-Opponent.ogg b/assets/gameplay/songs/2hot/Voices-Opponent.ogg
new file mode 100644
index 0000000..f416164
Binary files /dev/null and b/assets/gameplay/songs/2hot/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/2hot/Voices-Player.ogg b/assets/gameplay/songs/2hot/Voices-Player.ogg
new file mode 100644
index 0000000..77f92ce
Binary files /dev/null and b/assets/gameplay/songs/2hot/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/2hot/chart.json b/assets/gameplay/songs/2hot/chart.json
new file mode 100644
index 0000000..a9b73e4
--- /dev/null
+++ b/assets/gameplay/songs/2hot/chart.json
@@ -0,0 +1,16002 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 206.043956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 206.043956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 494.505494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 494.505494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 824.175824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 989.010989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1153.84615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1318.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1318.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1565.93406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1565.93406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1813.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1813.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2142.85714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2307.69230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2472.52747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2637.36263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2637.36263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2884.61538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2884.61538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3131.86813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3131.86813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3461.53846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3626.37362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3791.20879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3955.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3955.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3956.04395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4120.87912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4162.08791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4162.08791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4285.71428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4450.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4450.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4450.54945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4615.38461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4779.85714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4780.21978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4944.69230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4945.05494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5109.52747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5109.89010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 5274.72527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 5604.39560439561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 5934.06593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 6263.73626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 6593.40659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 6923.07692307692,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 7252.74725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 7582.41758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7912.08791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8076.92307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8241.75824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8571.42857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8736.26373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8901.0989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9065.93406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835166,
+ "time": 9230.76923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835166,
+ "time": 9560.43956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10549.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10549.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10755.4945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10755.4945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11373.6263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11538.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11703.2967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11868.1318681319,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11868.1318681319,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12115.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12115.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12692.3076923077,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12857.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13186.8131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13186.8131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13434.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13434.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13681.3186813187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13681.3186813187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14010.989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14340.6593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14505.4945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14505.4945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14711.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14711.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15329.6703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15494.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15824.1758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17802.1978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18131.8681318681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18214.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19945.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20851.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 247.252747252747,
+ "time": 21098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 247.252747252747,
+ "time": 21098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21593.4065934066,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21923.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22747.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22912.0879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 247.252747252747,
+ "time": 23736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 247.252747252747,
+ "time": 23736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24230.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24560.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25219.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25384.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25549.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25714.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25879.1208791209,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26208.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26703.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26868.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27692.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28681.3186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28846.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29010.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29505.4945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30329.6703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30659.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32802.1978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32884.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33173.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33173.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33791.2087912088,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33791.2087912088,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34285.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34285.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34615.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34615.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35109.8901098901,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35109.8901098901,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35439.5604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35521.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35604.3956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35604.3956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35810.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35810.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37747.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38076.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38159.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38241.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38447.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38736.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39065.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39560.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40796.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41085.1648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42197.8021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42197.8021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43434.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44752.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44835.1648351648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44835.1648351648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46071.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47390.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47719.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47719.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47967.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47967.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49945.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51098.9010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51428.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51428.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51634.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51634.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52953.2967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52953.2967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54271.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54271.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54560.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54560.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55219.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55467.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55796.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56126.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56208.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56456.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56703.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56785.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56868.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57445.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57692.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57774.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58104.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58434.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58681.3186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58763.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59010.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59093.4065934066,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59423.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59505.4945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60082.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60329.6703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60412.0879120879,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60494.5054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60741.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60824.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61071.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61153.8461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61318.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61318.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61401.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61483.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61730.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61813.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62060.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62142.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62390.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62719.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62802.1978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63049.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63131.8681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63379.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63708.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64038.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64368.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64697.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65357.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65686.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66758.2417582418,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67129.1208791209,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67129.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67170.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67170.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67458.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67458.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67458.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67747.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68076.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68571.4285714286,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69395.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69725.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69807.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69807.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70384.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70384.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70714.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70714.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71208.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71208.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71208.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71208.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72445.0549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72445.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72733.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72733.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72733.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72733.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73846.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73846.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73846.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75082.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75082.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75370.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75370.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75370.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75370.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75659.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75659.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76565.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76648.3516483517,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76895.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77225.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77554.9450549451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77802.1978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77884.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77967.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78543.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78873.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79203.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79532.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79862.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79945.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80192.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80521.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81840.6593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81923.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82170.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82829.6703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82912.0879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83159.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83489.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83818.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84230.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84395.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84478.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84560.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84725.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84807.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85054.9450549451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85137.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85219.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85467.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85796.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87857.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87857.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88186.8131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88269.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88269.2307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88846.1538461539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88846.1538461539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90494.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90494.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90494.5054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90824.1758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90824.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90906.5934065934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90906.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91483.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91483.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91648.3516483517,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91813.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91813.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93131.8681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93131.8681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93131.8681318681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93543.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 93543.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93626.3736263736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93626.3736263736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94120.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94120.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94945.054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94945.054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94945.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95769.2307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95769.2307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96098.9010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96181.3186813187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96181.3186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96469.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96469.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97087.9120879121,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97417.5824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97829.6703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97829.6703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100467.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100467.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101208.791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101373.626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101538.461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101538.461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101538.461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101703.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 101744.868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101744.868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101868.131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102197.802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102362.637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102362.637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102527.472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102527.472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102692.307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102692.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 102857.142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 103186.813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 103516.483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 103846.153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 104175.824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 104505.494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 104835.164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 105164.835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105494.505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105659.340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105824.175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106153.846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106318.681318681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106483.516483516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106648.351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835166,
+ "time": 106813.186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835166,
+ "time": 107142.857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108131.868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108214.285714286,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108296.703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108461.538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108543.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108626.373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108791.208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108873.626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109120.879120879,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109203.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109285.714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109450.549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109532.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109615.384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110274.725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110439.56043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110521.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110604.395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110769.230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110851.648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110934.065934066,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111098.901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111181.318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111263.736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111428.571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111510.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111593.406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111758.241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111840.659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111923.076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112087.912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112170.32967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112252.747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112912.087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113076.923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113159.340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113241.758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 113406.593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113406.593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113406.593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113489.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113571.428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113736.263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113736.263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113736.263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113818.681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113901.098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114065.934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114065.934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114065.934065934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114148.351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114230.769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114395.604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114395.604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114478.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114478.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 114560.43956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 114725.274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114725.274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114725.274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114807.692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114890.10989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 115054.945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115137.362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 115302.197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115384.615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115384.615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115467.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115549.450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 115714.285714286,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115796.703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115879.120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 116043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116126.373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116208.791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116373.626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116456.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116538.461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116703.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116785.714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116868.131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117115.384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117197.802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117362.637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117445.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117527.472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117692.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117774.725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117857.142857143,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 2.6,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 206.043956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 206.043956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 494.505494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 494.505494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 824.175824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 989.010989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1153.84615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1318.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1318.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1524.72527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1524.72527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1813.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1813.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2142.85714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2307.69230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2472.52747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2843.04395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2843.04395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3131.50549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3131.50549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3461.17582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3626.01098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3790.84615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3955.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3955.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3956.04395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4120.87912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4162.08791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4162.08791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4285.71428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4450.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4450.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4450.54945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4615.38461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4779.85714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4780.21978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4944.69230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4945.05494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5109.52747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5109.89010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 5274.72527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 5604.39560439561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 5934.06593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 6263.73626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 6593.40659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 6923.07692307692,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 7252.74725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 7582.41758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7912.08791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8076.92307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8241.75824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8406.59340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8571.42857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8736.26373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8901.0989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8983.51648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9065.93406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9148.35164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835166,
+ "time": 9230.76923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835166,
+ "time": 9560.43956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10755.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10755.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11043.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11043.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11373.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11538.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11702.8461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11867.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11867.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12073.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12073.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12362.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12362.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12691.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12856.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13021.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13186,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13186,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13392.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13392.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13680.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13680.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14010.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14175.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14339.8461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14504.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14504.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14710.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14710.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14999.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14999.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15328.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15493.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15658.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15824.1758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16648.3516483517,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17802.1978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17967.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18131.8681318681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18214.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19945.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20851.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 247.252747252747,
+ "time": 21098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 247.252747252747,
+ "time": 21098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21593.4065934066,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21923.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22747.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22912.0879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 247.252747252747,
+ "time": 23736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 247.252747252747,
+ "time": 23736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24230.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24560.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25219.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25384.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25549.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25714.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25879.1208791209,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26208.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26703.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26868.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27197.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27445.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27609.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27692.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28681.3186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28763.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28846.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28928.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29010.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29505.4945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29835.1648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30082.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30247.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30329.6703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30659.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32802.1978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32884.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33173.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33173.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33791.2087912088,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33791.2087912088,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34285.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34285.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34615.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34615.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35109.8901098901,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35109.8901098901,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35439.5604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35521.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35604.3956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35604.3956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35810.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35810.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37747.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37747.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38076.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38159.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38241.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38241.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38447.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38447.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38736.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38736.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39065.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39065.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39560.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39560.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40796.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41085.1648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41085.1648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42197.8021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42197.8021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43434.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44752.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44835.1648351648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44835.1648351648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46071.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47390.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47678.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47678.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47967.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47967.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48997.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48997.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49945.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50315.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50315.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50645.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51098.9010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51428.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51428.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51634.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51634.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52953.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52953.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53241.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53241.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53571.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53736.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53900.8461538461,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54065.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54065.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54271.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54271.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54560.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54560.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54889.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55054.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55219.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55467.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55796.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56126.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56208.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56456.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56703.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56785.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56868.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57115.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57197.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57445.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57692.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57774.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58104.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58433.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58681.3186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58763.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59010.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59093.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59422.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59505.4945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59752.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59835.1648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60082.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60329.6703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60412.0879120879,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60494.5054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60741.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60824.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61071.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61153.8461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61318.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61318.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61401.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61483.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61730.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61813.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62060.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62142.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62390.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62719.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62802.1978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63049.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63131.8681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63379.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63708.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64038.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64368.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64697.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64945.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65027.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65357.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65686.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66263.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66263.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66758.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66758.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66758.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66758.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67087.912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67087.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67170.3296703296,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67170.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67252.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67252.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67252.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67252.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67458.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67458.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67458.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67458.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67747.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67747.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67747.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67747.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68076.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68076.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68076.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68076.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68571.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68571.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68571.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68571.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68901.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68901.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69395.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69395.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69395.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69395.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69725.2747252746,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69725.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69807.6923076922,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69807.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69890.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69890.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70384.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70384.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70714.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70714.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71208.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71208.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71208.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71208.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71537.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71537.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72032.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72032.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72032.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72032.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72361.912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72361.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72444.3296703296,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72444.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72526.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72526.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72526.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72526.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72732.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72732.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72732.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72732.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73021.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73021.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73021.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73021.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73350.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73350.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73350.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73350.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73845.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73845.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73845.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73845.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74175.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74175.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74669.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74669.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74669.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74669.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74999.2747252746,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74999.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75081.6923076922,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75081.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75164.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75164.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75164.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75164.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75370.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75370.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75370.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75370.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75658.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75658.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75658.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75658.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75823.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75988.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75988.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76153.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76483.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76566.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76648.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76813.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76895.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77142.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77225.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77307.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77472.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77554.9450549451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77637.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77802.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77884.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77967.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78131.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78214.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78296.8021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78461.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78543.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78626.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78791.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78873.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78956.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79203.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79532.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79862.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79945.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80192.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80521.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80851.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81840.6593406594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81923.076923077,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82170.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82829.6703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82912.0879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83159.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83241.7582417583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83489.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83736.2637362638,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83736.2637362638,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83818.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84230.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84395.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84478.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84560.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84725.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84807.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85054.9450549451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85137.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85219.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85467.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85796.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86126.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86208.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87032.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87032.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87032.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87032.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87361.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87361.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87856.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87856.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87856.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88185.912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88185.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88268.3296703296,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88268.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88350.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88350.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88350.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88350.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88556.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88556.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88845.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88845.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88845.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88845.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89174.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89174.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89669.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89669.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89669.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89669.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89999.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89999.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90493.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90493.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90493.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90494.5054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90823.2747252746,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90823.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90905.6923076922,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90905.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90988.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90988.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90988.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90988.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91194.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91194.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91482.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91482.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91482.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91482.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91647.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91812.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91812.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91977.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92306.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92306.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92306.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92306.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92635.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92635.7362637362,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93130.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93130.2417582417,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93130.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93131.8681318681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93459.912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93459.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93542.3296703296,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 93542.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93624.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93624.7472527472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93624.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93624.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93830.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93830.7912087911,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94119.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94119.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94119.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94119.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94448.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94448.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94943.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94943.4285714285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94943.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94943.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95273.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95273.0989010988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95767.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95767.6043956043,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95767.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96097.2747252746,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96097.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96179.6923076922,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96179.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96262.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96262.1098901098,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96262.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96262.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96468.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96468.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96469.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96469.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96756.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96756.6153846153,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96756.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96756.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96921.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97086.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97086.2857142856,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97087.9120879121,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97251.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97417.5824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97788.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97788.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99107.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99107.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100219.417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100219.417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100425.461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100425.461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100713.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100713.923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101043.593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101208.428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101373.263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101538.098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101538.098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101538.461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101703.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 101744.142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101744.142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101868.131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102032.604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102032.604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102197.802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102362.274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102362.637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102527.10989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102527.472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102691.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102692.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 102857.725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 103187.395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 103516.483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 103846.153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 104176.406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 104506.076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 104835.164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 105164.835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105495.087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105659.923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105824.758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105989.593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106154.428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106319.263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106483.516483516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106565.934065934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106648.351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106730.769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 106813.186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 107142.857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108131.615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108131.868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108214.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108296.450549451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108461.538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108461.538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108543.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108626.373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108791.208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108791.208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108873.373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109120.879120879,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109120.879120879,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109203.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109285.714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109450.549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109450.549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109532.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109615.384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109779.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109780.21978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109862.384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109944.802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110109.89010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110109.89010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110192.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110274.725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110439.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110439.56043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110521.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110604.142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110768.615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110769.230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110851.648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110933.450549451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111098.901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111098.901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111180.703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111263.736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111428.571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111428.571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111510.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111593.406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111758.241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111758.241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111840.659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111923.076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112087.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112087.912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112170.32967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112252.747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112417.582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112417.582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112582.417582418,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112747.252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112747.252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112829.67032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112912.087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113076.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113076.923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 113159.340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113241.142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113406.340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113406.340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113406.593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113488.758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113571.175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113571.428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113736.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113736.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113736.263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113818.428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113900.846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113901.098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114065.681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114065.681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114065.934065934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114148.098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114230.516483516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114230.769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114395.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114395.351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114395.351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114477.43956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114477.769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114559.857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 114560.186813187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114642.274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 114724.692307692,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114725.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114725.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114807.43956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114889.857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 115054.362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115054.692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115054.692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115137.10989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115219.527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115384.362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115384.362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 115384.615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115466.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115549.197802198,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115714.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115714.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 115714.285714286,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115796.450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115878.868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 116043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116126.373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116208.791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116373.626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116373.626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116456.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116538.461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116703.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116703.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116785.714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116868.131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117115.384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117197.802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117362.637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117362.637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117445.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117527.472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117692.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117692.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117774.725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117857.142857143,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.6,
+ "rating": 5
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 206.043956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 206.043956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 494.505494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 494.505494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 824.175824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 989.010989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1153.84615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1318.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1318.68131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1565.93406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1565.93406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1813.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1813.18681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2142.85714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2307.69230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2472.52747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2637.36263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2637.36263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2843.40659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2843.40659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3131.86813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3131.86813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3461.53846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3626.37362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3791.20879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3956.04395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4120.87912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4285.71428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4450.54945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4615.38461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4780.21978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4945.05494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5109.89010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 5274.72527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 5604.39560439561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 5934.06593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 82.4175824175824,
+ "time": 6263.73626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 6593.40659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 6923.07692307692,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 7252.74725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 7582.41758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7912.08791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8076.92307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8241.75824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8571.42857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8736.26373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8983.51648351648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835166,
+ "time": 9230.76923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10755.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10755.043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11043.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11043.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11373.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11538.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11702.8461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11868.1318681319,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11868.1318681319,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12115.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12115.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12692.3076923077,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12857.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13186.8131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13186.8131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13392.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13392.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13681.3186813187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13681.3186813187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14010.989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14340.6593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14505.4945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14505.4945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14711.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14711.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15329.6703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15494.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15824.1758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17802.1978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18131.8681318681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18214.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19945.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20851.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 247.252747252747,
+ "time": 21098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 247.252747252747,
+ "time": 21098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21593.4065934066,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21923.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22747.2527472527,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22912.0879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 247.252747252747,
+ "time": 23736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 247.252747252747,
+ "time": 23736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24230.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24560.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25219.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25384.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25549.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25714.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25879.1208791209,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26208.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26703.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26868.1318681319,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27692.3076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28681.3186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28846.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29010.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29505.4945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30329.6703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30659.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32802.1978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32884.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33173.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33173.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33791.2087912088,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33791.2087912088,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34285.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34285.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34615.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34615.3846153846,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35109.8901098901,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35109.8901098901,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35439.5604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35521.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35604.3956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35604.3956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35810.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35810.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36428.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37747.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38076.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38159.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38241.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38489.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38736.2637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39065.9340659341,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39560.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40796.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41126.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42197.8021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42197.8021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43434.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44835.1648351648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44835.1648351648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46071.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47719.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47967.032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49038.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49945.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50357.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51098.9010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51428.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51634.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52953.2967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52953.2967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54313.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54313.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54560.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54560.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55054.9450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55219.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56208.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56373.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56703.2967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56991.7582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57445.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57609.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57774.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58516.4835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58681.3186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59010.989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59340.6593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59587.9120879121,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60329.6703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60494.5054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60741.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60824.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61071.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61153.8461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61318.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61318.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61401.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61483.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61648.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61730.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61813.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61978.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62060.4395604396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62142.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62390.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62472.5274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62719.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62802.1978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62967.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63049.4505494506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63131.8681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63296.7032967033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63791.2087912088,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64903.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65233.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65604.3956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65934.0659340659,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66758.2417582418,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67087.9120879121,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67129.1208791209,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67170.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67170.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67458.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67458.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67458.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67747.2527472528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68076.9230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68571.4285714286,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69395.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69725.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69807.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70096.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70384.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70384.6153846154,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70714.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70714.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70879.1208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71208.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71208.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71208.7912087912,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71538.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72445.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72445.0549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72527.4725274725,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72527.4725274725,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72733.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72733.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72733.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73021.978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73021.978021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73846.1538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73846.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73846.1538461538,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75082.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75164.8351648352,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75164.8351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75370.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75370.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75370.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75659.3406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75659.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75824.1758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76153.8461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76318.6813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76483.5164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76648.3516483517,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77472.5274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77802.1978021978,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78543.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78708.7912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78873.6263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79285.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79615.3846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79780.2197802198,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79945.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80109.8901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80439.5604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80686.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81840.6593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81923.0769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82170.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82252.7472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82417.5824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82747.2527472528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82829.6703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82912.0879120879,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83159.3406593407,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83241.7582417582,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83489.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83818.6813186813,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84065.9340659341,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84230.7692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84395.6043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84560.4395604396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84725.2747252747,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84890.1098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85054.9450549451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85219.7802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85384.6153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85549.4505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85714.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87362.6373626374,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87857.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87857.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87857.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88186.8131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88186.8131868132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88269.2307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88351.6483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88351.6483516484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88557.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88846.1538461539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88846.1538461539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88846.1538461539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89175.8241758242,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89670.3296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89670.3296703297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90494.5054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90494.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90494.5054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90824.1758241758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90824.1758241758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90906.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90989.010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90989.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91195.0549450549,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91483.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91483.5164835165,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91648.3516483517,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91813.1868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91813.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91813.1868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91978.021978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92142.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92307.6923076923,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92307.6923076923,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92637.3626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93131.8681318681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93131.8681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93131.8681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93461.5384615385,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93461.5384615385,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93543.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93626.3736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93626.3736263736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93626.3736263736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93832.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94120.8791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94120.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94120.8791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94450.5494505495,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94945.054945055,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94945.054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94945.054945055,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95274.7252747253,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95769.2307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95769.2307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95769.2307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96098.9010989011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96098.9010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96181.3186813187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96263.7362637363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96263.7362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96469.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96469.7802197802,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96758.2417582418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96923.0769230769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97087.9120879121,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97087.9120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97252.7472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97417.5824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97582.4175824176,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97788.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97788.4615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98076.9230769231,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98406.5934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98571.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98736.2637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98901.0989010989,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99148.3516483517,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99395.6043956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99725.2747252747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99890.1098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100425.824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100425.824175824,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101043.956043956,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101208.791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101208.791208791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101373.626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101373.626373626,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101538.461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101538.461538462,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101538.461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101703.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 101744.868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101744.868131868,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101868.131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102032.967032967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102197.802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102362.637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102362.637362637,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102527.472527473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102527.472527473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102692.307692308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102692.307692308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 102857.142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 103186.813186813,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 123.626373626374,
+ "time": 103516.483516484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 103846.153846154,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 164.835164835165,
+ "time": 104175.824175824,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 104505.494505495,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 123.626373626374,
+ "time": 104835.164835165,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 105164.835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105494.505494506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105824.175824176,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106153.846153846,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106401.098901099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106565.934065934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 106813.186813187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 206.043956043956,
+ "time": 107142.857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108131.868131868,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108296.703296703,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108461.538461538,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108626.373626374,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108791.208791209,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108956.043956044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109120.879120879,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109285.714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109450.549450549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109780.21978022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110109.89010989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110439.56043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110769.230769231,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110934.065934066,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111098.901098901,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111263.736263736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111428.571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111593.406593407,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111758.241758242,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111923.076923077,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112087.912087912,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112417.582417582,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112664.835164835,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 113406.593406593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113406.593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113406.593406593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113489.010989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113571.428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113736.263736264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113736.263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113736.263736264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113818.681318681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113901.098901099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114065.934065934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114065.934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114065.934065934,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114148.351648352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114230.769230769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114395.604395604,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114395.604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114395.604395604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114478.021978022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114560.43956044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 114725.274725275,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114725.274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114725.274725275,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114807.692307692,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114890.10989011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 115054.945054945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115054.945054945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115137.362637363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115219.78021978,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 164.835164835165,
+ "time": 115384.615384615,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115384.615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115384.615384615,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115467.032967033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115549.450549451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 164.835164835165,
+ "time": 115714.285714286,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115714.285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115796.703296703,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115879.120879121,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 116043.956043956,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116208.791208791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116373.626373626,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116538.461538462,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116703.296703297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116868.131868132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117032.967032967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117197.802197802,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117362.637362637,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117609.89010989,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 2.6,
+ "rating": 3
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/2hot/events.json b/assets/gameplay/songs/2hot/events.json
new file mode 100644
index 0000000..2316920
--- /dev/null
+++ b/assets/gameplay/songs/2hot/events.json
@@ -0,0 +1,632 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 3956.04395604396,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 8901.0989010989,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 0.65
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8901.0989010989,
+ "args": {
+ "pos": {
+ "x": 100,
+ "y": 105
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 10549.4505494506,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "INSTANT",
+ "duration": 4
+ },
+ "zoom": 0.77
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10549.4505494506,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 15824.1758241758,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 21098.9010989011,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 26373.6263736264,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 31648.3516483517,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 36923.0769230769,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 40549.0989010989,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 0.65
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40549.0989010989,
+ "args": {
+ "pos": {
+ "x": 100,
+ "y": 105
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 42197.4505494506,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "INSTANT",
+ "duration": 4
+ },
+ "zoom": 0.77
+ }
+ },
+ {
+ "name": "camera",
+ "time": 42197.8021978022,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43516.4835164835,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 44835.1648351648,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46153.8461538462,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 51098.0989010989,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 0.65
+ }
+ },
+ {
+ "name": "camera",
+ "time": 51098.0989010989,
+ "args": {
+ "pos": {
+ "x": 100,
+ "y": 105
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 52746.4505494506,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "INSTANT",
+ "duration": 4
+ },
+ "zoom": 0.77
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52746.4505494506,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 55384.6153846154,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60659.3406593407,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 63296.7032967033,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65934.0659340659,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67252.7472527473,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 68571.4285714286,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 69890.1098901099,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 71208.7912087912,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72527.4725274725,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 73846.1538461538,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 75164.8351648352,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 80109.8901098901,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 0.65
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80109.8901098901,
+ "args": {
+ "pos": {
+ "x": 100,
+ "y": 105
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 81758.2417582417,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "INSTANT",
+ "duration": 4
+ },
+ "zoom": 0.77
+ }
+ },
+ {
+ "name": "camera",
+ "time": 81758.2417582418,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 84395.6043956044,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 85384.0989010989,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 0.65
+ }
+ },
+ {
+ "name": "camera",
+ "time": 85384.0989010989,
+ "args": {
+ "pos": {
+ "x": 100,
+ "y": 105
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 87032.4505494505,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "INSTANT",
+ "duration": 4
+ },
+ "zoom": 0.77
+ }
+ },
+ {
+ "name": "camera",
+ "time": 87032.4505494506,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 88351.6483516484,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 89670.3296703297,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 90989.010989011,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 92307.6923076923,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 93626.3736263736,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 94945.054945055,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 96263.7362637363,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 97582.4175824176,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 101538.461538462,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 113406.593406593,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 114725.274725275,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 117032.098901099,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 0.65
+ }
+ },
+ {
+ "name": "camera",
+ "time": 117032.098901099,
+ "args": {
+ "pos": {
+ "x": 100,
+ "y": 105
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 118680.450549451,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "INSTANT",
+ "duration": 4
+ },
+ "zoom": 0.77
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/2hot/metadata.json b/assets/gameplay/songs/2hot/metadata.json
new file mode 100644
index 0000000..f8c696e
--- /dev/null
+++ b/assets/gameplay/songs/2hot/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 182
+ }
+ ],
+ "name": "2hot",
+ "characters": {
+ "spectator": "nene",
+ "opponent": "darnell",
+ "player": "pico-playable"
+ },
+ "icon": "darnell",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "phillyStreets",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "Jenny Crowe + Spazkid + ninjamuffin99"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/blammed/Inst.ogg b/assets/gameplay/songs/blammed/Inst.ogg
new file mode 100644
index 0000000..398f607
Binary files /dev/null and b/assets/gameplay/songs/blammed/Inst.ogg differ
diff --git a/assets/gameplay/songs/blammed/Voices-Opponent.ogg b/assets/gameplay/songs/blammed/Voices-Opponent.ogg
new file mode 100644
index 0000000..ce26894
Binary files /dev/null and b/assets/gameplay/songs/blammed/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/blammed/Voices-Player.ogg b/assets/gameplay/songs/blammed/Voices-Player.ogg
new file mode 100644
index 0000000..18ed95e
Binary files /dev/null and b/assets/gameplay/songs/blammed/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/blammed/chart.json b/assets/gameplay/songs/blammed/chart.json
new file mode 100644
index 0000000..2b09c86
--- /dev/null
+++ b/assets/gameplay/songs/blammed/chart.json
@@ -0,0 +1,5386 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 11818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 12727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 90,
+ "time": 16727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 181,
+ "time": 17090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 90,
+ "time": 22545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 181,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 36363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 38909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 41818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 42181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 45090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 57454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 69818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 70181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 71272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 73818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 76727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 77090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 81818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 82545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 82909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 84727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 85454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 85818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 87636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 88363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 88727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 90545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 91272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 91636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92909,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.5,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 11818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 12727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 90,
+ "time": 16181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 90,
+ "time": 16727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 181,
+ "time": 17090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 90,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 90,
+ "time": 22545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 181,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 35272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 36363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 38181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 38909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 41090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 41818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 42181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 45090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 57454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 69818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 70181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 71272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 73090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 73818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 76727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 77090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 78909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 81818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 82545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 82909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 84727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 85454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 85818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 87636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 88363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 88727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 90545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 91272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 91636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92909,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.3,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 11818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 12727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 181,
+ "time": 17090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 181,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 36363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 38909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 41818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 42181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 45090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 57454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 69818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 71272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 73818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 76727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 77090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 82545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 82909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 85454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 85818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 88363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 88727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 272,
+ "time": 91272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 91636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92909,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.2,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/blammed/events.json b/assets/gameplay/songs/blammed/events.json
new file mode 100644
index 0000000..e8d97a6
--- /dev/null
+++ b/assets/gameplay/songs/blammed/events.json
@@ -0,0 +1,158 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 11818,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 17636,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 23454,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 29272,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 35090,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40909,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46545,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52363,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 58181,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 69818,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 75818,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 81636,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 87454,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/blammed/metadata.json b/assets/gameplay/songs/blammed/metadata.json
new file mode 100644
index 0000000..7f69f13
--- /dev/null
+++ b/assets/gameplay/songs/blammed/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 165
+ }
+ ],
+ "name": "Blammed",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "pico",
+ "player": "bf"
+ },
+ "icon": "pico",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "phillyTrain",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/blazin/Inst.ogg b/assets/gameplay/songs/blazin/Inst.ogg
new file mode 100644
index 0000000..6cb22aa
Binary files /dev/null and b/assets/gameplay/songs/blazin/Inst.ogg differ
diff --git a/assets/gameplay/songs/blazin/chart.json b/assets/gameplay/songs/blazin/chart.json
new file mode 100644
index 0000000..005f3d1
--- /dev/null
+++ b/assets/gameplay/songs/blazin/chart.json
@@ -0,0 +1,22 @@
+{
+ "charts": [
+ {
+ "chart": [],
+ "difficulty": "normal",
+ "speed": 2.4,
+ "rating": 4
+ },
+ {
+ "chart": [],
+ "difficulty": "hard",
+ "speed": 3.2,
+ "rating": 5
+ },
+ {
+ "chart": [],
+ "difficulty": "easy",
+ "speed": 2,
+ "rating": 3
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/blazin/events.json b/assets/gameplay/songs/blazin/events.json
new file mode 100644
index 0000000..ecdc4a7
--- /dev/null
+++ b/assets/gameplay/songs/blazin/events.json
@@ -0,0 +1,3 @@
+{
+ "events": []
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/blazin/metadata.json b/assets/gameplay/songs/blazin/metadata.json
new file mode 100644
index 0000000..a70fd68
--- /dev/null
+++ b/assets/gameplay/songs/blazin/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 180
+ }
+ ],
+ "name": "Blazin'",
+ "characters": {
+ "spectator": "nene",
+ "opponent": "darnell-blazin",
+ "player": "pico-blazin"
+ },
+ "icon": "darnell",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "phillyBlazin",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "fabs + PhantomArcade"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/bopeebo/Inst.ogg b/assets/gameplay/songs/bopeebo/Inst.ogg
new file mode 100644
index 0000000..593052b
Binary files /dev/null and b/assets/gameplay/songs/bopeebo/Inst.ogg differ
diff --git a/assets/gameplay/songs/bopeebo/Voices-Opponent.ogg b/assets/gameplay/songs/bopeebo/Voices-Opponent.ogg
new file mode 100644
index 0000000..bfd1edf
Binary files /dev/null and b/assets/gameplay/songs/bopeebo/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/bopeebo/Voices-Player.ogg b/assets/gameplay/songs/bopeebo/Voices-Player.ogg
new file mode 100644
index 0000000..5394f46
Binary files /dev/null and b/assets/gameplay/songs/bopeebo/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/bopeebo/chart.json b/assets/gameplay/songs/bopeebo/chart.json
new file mode 100644
index 0000000..1b615e8
--- /dev/null
+++ b/assets/gameplay/songs/bopeebo/chart.json
@@ -0,0 +1,2273 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 1200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 3000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 3600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 7200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 7800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 8400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 13200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 15600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 900,
+ "time": 19800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 900,
+ "time": 22200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 900,
+ "time": 24600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 900,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 29400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 31800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 600,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 41400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 600,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 450,
+ "time": 49200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 450,
+ "time": 51600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1800,
+ "time": 52800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1800,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 58200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 60600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 63600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 68400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 1200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 3000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 3600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 7200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 7800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 8400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 13200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 15600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 900,
+ "time": 19800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 900,
+ "time": 22200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 900,
+ "time": 24600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 900,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 29400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 31800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34575,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36975,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 600,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 41400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 600,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 450,
+ "time": 49200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 450,
+ "time": 51600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1800,
+ "time": 52800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1800,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 58200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 60600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 63600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 68400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72975,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.3,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 1200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 3000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 3600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 7200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 7800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 8400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 13200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 15600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 900,
+ "time": 19800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 900,
+ "time": 22200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 900,
+ "time": 24600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 900,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 29400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 31800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 600,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 41400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 600,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 450,
+ "time": 49200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 450,
+ "time": 51600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1800,
+ "time": 52800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1800,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 58200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1200,
+ "time": 60600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 63600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 68400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/bopeebo/events.json b/assets/gameplay/songs/bopeebo/events.json
new file mode 100644
index 0000000..a123c54
--- /dev/null
+++ b/assets/gameplay/songs/bopeebo/events.json
@@ -0,0 +1,500 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 2400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 4200,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 4800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 7200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 9000,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 12000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 13800,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 14400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 18600,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 21600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 23400,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 26400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 28200,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 31200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 33000,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 33600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 36000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 37800,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 38400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 42600,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 45600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 47400,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 50400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 52200,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 55200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 57000,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 61800,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 62400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 66600,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 69600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 71400,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 74400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 76200,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/bopeebo/metadata.json b/assets/gameplay/songs/bopeebo/metadata.json
new file mode 100644
index 0000000..a2219af
--- /dev/null
+++ b/assets/gameplay/songs/bopeebo/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 100
+ }
+ ],
+ "name": "Bopeebo",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "dad",
+ "player": "bf"
+ },
+ "icon": "dad",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "mainStage",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/cocoa/Inst.ogg b/assets/gameplay/songs/cocoa/Inst.ogg
new file mode 100644
index 0000000..5d3983d
Binary files /dev/null and b/assets/gameplay/songs/cocoa/Inst.ogg differ
diff --git a/assets/gameplay/songs/cocoa/Voices-Opponent.ogg b/assets/gameplay/songs/cocoa/Voices-Opponent.ogg
new file mode 100644
index 0000000..05e82d3
Binary files /dev/null and b/assets/gameplay/songs/cocoa/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/cocoa/Voices-Player.ogg b/assets/gameplay/songs/cocoa/Voices-Player.ogg
new file mode 100644
index 0000000..e2244d0
Binary files /dev/null and b/assets/gameplay/songs/cocoa/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/cocoa/chart.json b/assets/gameplay/songs/cocoa/chart.json
new file mode 100644
index 0000000..250d41d
--- /dev/null
+++ b/assets/gameplay/songs/cocoa/chart.json
@@ -0,0 +1,6056 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1350,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1650,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 17700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 150,
+ "time": 19500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 450,
+ "time": 19800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 1050,
+ "time": 20400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 150,
+ "time": 22800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 28800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 150,
+ "time": 29100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 450,
+ "time": 29400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1050,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 150,
+ "time": 32400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46950,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 58200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 58800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 150,
+ "time": 59400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 750,
+ "time": 59700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 60600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 61200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 61800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 67800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 150,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 750,
+ "time": 69300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 71400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89850,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98250,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 100800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 105600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.3,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1350,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1650,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1950,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4350,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4950,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7650,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7950,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 17700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 150,
+ "time": 19500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 450,
+ "time": 19800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 1050,
+ "time": 20400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 150,
+ "time": 22800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24150,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25350,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25950,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26250,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26850,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27150,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 150,
+ "time": 29100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 450,
+ "time": 29400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1050,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 150,
+ "time": 32400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43950,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46650,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46950,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 58200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 58800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 150,
+ "time": 59400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 750,
+ "time": 59700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 60600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 61200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 61800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62550,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62850,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64350,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65250,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65550,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66150,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 67800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 150,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 750,
+ "time": 69300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 71400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86550,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86850,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87150,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88350,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88950,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89250,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89550,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89850,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90150,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96150,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97350,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97950,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98250,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98550,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98850,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99150,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99450,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100350,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 100800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 101250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 101550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 105600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.5,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1350,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1650,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 17700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 150,
+ "time": 19500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 450,
+ "time": 19800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 1050,
+ "time": 20400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 28800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 150,
+ "time": 29100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 450,
+ "time": 29400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1050,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46050,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46950,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57750,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 58200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 58800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 150,
+ "time": 59400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 750,
+ "time": 59700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 60600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 61200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 61800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 67800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 150,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 750,
+ "time": 69300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 450,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 450,
+ "time": 71400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82950,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91050,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98100,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100650,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 100800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 105600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.3,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/cocoa/events.json b/assets/gameplay/songs/cocoa/events.json
new file mode 100644
index 0000000..7df11b0
--- /dev/null
+++ b/assets/gameplay/songs/cocoa/events.json
@@ -0,0 +1,158 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 39000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57750,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67350,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 81600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 91200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 96000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 100800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/cocoa/metadata.json b/assets/gameplay/songs/cocoa/metadata.json
new file mode 100644
index 0000000..7417e3d
--- /dev/null
+++ b/assets/gameplay/songs/cocoa/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 100
+ }
+ ],
+ "name": "Cocoa",
+ "characters": {
+ "spectator": "gf-christmas",
+ "opponent": "parents-christmas",
+ "player": "bf-christmas"
+ },
+ "icon": "parents-christmas",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "mallXmas",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/dadbattle/Inst-bf.ogg b/assets/gameplay/songs/dadbattle/Inst-bf.ogg
new file mode 100644
index 0000000..bbcfccc
Binary files /dev/null and b/assets/gameplay/songs/dadbattle/Inst-bf.ogg differ
diff --git a/assets/gameplay/songs/dadbattle/Inst.ogg b/assets/gameplay/songs/dadbattle/Inst.ogg
new file mode 100644
index 0000000..cab4b7e
Binary files /dev/null and b/assets/gameplay/songs/dadbattle/Inst.ogg differ
diff --git a/assets/gameplay/songs/dadbattle/Voices-Opponent.ogg b/assets/gameplay/songs/dadbattle/Voices-Opponent.ogg
new file mode 100644
index 0000000..a399fa7
Binary files /dev/null and b/assets/gameplay/songs/dadbattle/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/dadbattle/Voices-Player.ogg b/assets/gameplay/songs/dadbattle/Voices-Player.ogg
new file mode 100644
index 0000000..1ce9340
Binary files /dev/null and b/assets/gameplay/songs/dadbattle/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/dadbattle/Voices-darnell.ogg b/assets/gameplay/songs/dadbattle/Voices-darnell.ogg
new file mode 100644
index 0000000..18a56f5
Binary files /dev/null and b/assets/gameplay/songs/dadbattle/Voices-darnell.ogg differ
diff --git a/assets/gameplay/songs/dadbattle/chart.json b/assets/gameplay/songs/dadbattle/chart.json
new file mode 100644
index 0000000..5d7dabd
--- /dev/null
+++ b/assets/gameplay/songs/dadbattle/chart.json
@@ -0,0 +1,4937 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 10666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 333,
+ "time": 63833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 333,
+ "time": 69166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84666,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.5,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 10666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 333,
+ "time": 63833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 333,
+ "time": 69166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84666,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.3,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 10666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84666,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.3,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/dadbattle/events.json b/assets/gameplay/songs/dadbattle/events.json
new file mode 100644
index 0000000..87b0215
--- /dev/null
+++ b/assets/gameplay/songs/dadbattle/events.json
@@ -0,0 +1,213 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 13333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 18666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 21666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 27000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 32166,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 42833,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 53333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 56000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 58666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 61333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 69666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 74666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 77333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 82666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/dadbattle/metadata.json b/assets/gameplay/songs/dadbattle/metadata.json
new file mode 100644
index 0000000..f5051d9
--- /dev/null
+++ b/assets/gameplay/songs/dadbattle/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 180
+ }
+ ],
+ "name": "DadBattle",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "dad",
+ "player": "bf"
+ },
+ "icon": "dad",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "mainStage",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/darnell/Inst.ogg b/assets/gameplay/songs/darnell/Inst.ogg
new file mode 100644
index 0000000..1f1d92d
Binary files /dev/null and b/assets/gameplay/songs/darnell/Inst.ogg differ
diff --git a/assets/gameplay/songs/darnell/Voices-Opponent.ogg b/assets/gameplay/songs/darnell/Voices-Opponent.ogg
new file mode 100644
index 0000000..18a56f5
Binary files /dev/null and b/assets/gameplay/songs/darnell/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/darnell/Voices-Player.ogg b/assets/gameplay/songs/darnell/Voices-Player.ogg
new file mode 100644
index 0000000..a463ab8
Binary files /dev/null and b/assets/gameplay/songs/darnell/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/darnell/chart.json b/assets/gameplay/songs/darnell/chart.json
new file mode 100644
index 0000000..96256b5
--- /dev/null
+++ b/assets/gameplay/songs/darnell/chart.json
@@ -0,0 +1,11720 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 774.193548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1161.29032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1354,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2709.67741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2903.22580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 3096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 3870.96774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4258.06451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5419.35483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5612.90322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5806.45161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 6193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6967.74193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7354.83870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7741.93548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8516.12903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 9290,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10258.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13741.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17225.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17419.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17612.9032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17806.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20516.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20709.6774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 193.548387096774,
+ "time": 20903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21290,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21870,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22258.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23612.9032258065,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 23806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24967.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25354.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25548.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 27096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29612,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 30387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30580.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31548.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 31935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32516.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32709.6774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 33290.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290.322580645156,
+ "time": 33483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290,
+ "time": 34064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34451.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34645.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36774.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096769,
+ "time": 36967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 193.548387096774,
+ "time": 37161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37741.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 145.161290322586,
+ "time": 39870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40064.5161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41419.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41612,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42387.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 42774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 42967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43354,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43935.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44129.0322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44322,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44709,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45096.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45290.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45677.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45870,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193.548387096774,
+ "time": 49354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 50709,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 53806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096774,
+ "time": 54967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 55741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 58838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 193,
+ "time": 59225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 59612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193,
+ "time": 61161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62128.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62225.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62515.9032258064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62709,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62999.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63290.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63677.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63773.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63870.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64064.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64257.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64451.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64548.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64645.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64838.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64935.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66096.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66774.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67161.2903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67548.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67645.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67741.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67935.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68322.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68419.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68709.9032258064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69193.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69484.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69871.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69967.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70064.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70258.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70451.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70645.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70742.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71032.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71129.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71418.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71515.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71805.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72289.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72580.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72967.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73063.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73160.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73354.2903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73547.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73741.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73838.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73935.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74128.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74225.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74322.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74516.7096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74710.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74903.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75097.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75289.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75677.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76064.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76258.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76451.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 76644.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76838.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77031.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77226.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77418.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77806.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78000.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78193.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78386.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78580.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78773.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78967.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79160.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79354.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79548.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79741.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 79935.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80129.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80323.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80515.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80709.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80903.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81097.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81289.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 81483.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81871.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82065.0967741936,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82258.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82452.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82644.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 145.161290322586,
+ "time": 82839.2903225807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290.322580645156,
+ "time": 83032.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83419.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290,
+ "time": 83612.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84000.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84194.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84386.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84581.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84774.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84968.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85161.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85355.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85548.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85742.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85936.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86129.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86323.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096769,
+ "time": 86516.7096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 193.548387096774,
+ "time": 86709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87096.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88064.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88258.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88452.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88645.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89032.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89226.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 145.161290322586,
+ "time": 89419.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89613.4838709678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89806.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90193.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90387.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90581.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90773.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90967.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91160.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91354.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91548.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91741.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91936.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92128.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 92322.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 92515.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92902.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93096.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93289.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94064.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94257.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94452.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94645.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94839.2903225807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95226.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95418.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95613.4838709678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95806.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096796,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96386.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96774.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96968.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97161.2903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97355.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97548.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97742.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97935.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98129.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98322.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98516.7096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98709.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193.548387096774,
+ "time": 98903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 99096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99870.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100063,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100258.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100644,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101805.677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101999.225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 102192,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102966.967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103354.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104128,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104515.35483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104708.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104902.451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 105289,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105676,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106063.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106451.612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 106644,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106837.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107612.129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108192,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 108386,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109160.516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109354.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110321,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110515,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110902.451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111289.548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111483.870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 111677.806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 111774.580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111870.967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112064.903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112548.774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112645.161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112839.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113226.193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113322.967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113419.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113613.290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113806.838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114000.387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114097.161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114193.548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114387.483870968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114484.258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114774.806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114871.580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114967.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115161.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115645.774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115741.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115936.096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116323.193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116419.967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116516.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116710.290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116903.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117097.387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117194.161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117290.322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117484.483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117581.258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117871.806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117968.580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118064.516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118258.903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118646,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118742.774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118838.709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119033.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119420.193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119516.967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 119613.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119807.290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120000.838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120194.387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120291.161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 120387.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120581.483870968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120678.258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 120967.806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 121064.580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 121161.290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121354.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121838.774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 121935.483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 122129.096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 122322,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 122516.193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 122612.967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 122709.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 122903.290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 123096.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 123290.387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 123387.161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 123483.870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 123677.483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 123774.258064516,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 2,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 774.193548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1064.51612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1161.29032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1354,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2709.67741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2903.22580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 3096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 3870.96774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4161.29032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4258.06451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5419.35483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5612.90322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5806.45161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 6193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6967.74193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7258.06451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7354.83870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7741.93548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8516.12903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 9290,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10258.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13741.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17225.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17419.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17612.9032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17806.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20516.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20709.6774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 193.548387096774,
+ "time": 20903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21290,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21870,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22258.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23612.9032258065,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 23806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24967.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25354.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25548.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 27096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29612,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 30387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30580.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31548.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 31935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32516.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32709.6774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 33290.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290.322580645156,
+ "time": 33483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290,
+ "time": 34064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34451.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34645.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35129.0322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36774.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096769,
+ "time": 36967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 193.548387096774,
+ "time": 37161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37645.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39193.5483870968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39387.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 145.161290322586,
+ "time": 39870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40064.5161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40741.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41419.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41612,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42387.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 42774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 42967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43354,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43838.7096774193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44129.0322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44322,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44709,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45096.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45290.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45677.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45870,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46935.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47129.0322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47516.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193.548387096774,
+ "time": 49354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50612,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 50709,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53709,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 53806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54870,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096774,
+ "time": 54967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 55741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56806.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 58838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 193,
+ "time": 59225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 59612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193,
+ "time": 61161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62225.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 96.7741935483871,
+ "time": 62322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62612.9032258064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62806.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 96.7741935483871,
+ "time": 63096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63387.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63580.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64064.5161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64258.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64354.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64548.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 64645.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96,
+ "time": 65419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65709,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483871,
+ "time": 66193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66677.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66774.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67354,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 96.7741935483981,
+ "time": 67741.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67935.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68225.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68419.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483761,
+ "time": 68516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68806.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69193.5483870968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483871,
+ "time": 69290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69580.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69967.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70064.5161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70258.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70354.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70548.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70645.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70741.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96.7741935483981,
+ "time": 70838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71322,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71418,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71515.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96,
+ "time": 71612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71805,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71902,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72289,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483871,
+ "time": 72386.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72580.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72676,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72870.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72967.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73063.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73160.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73354,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73644,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 96.7741935483981,
+ "time": 73934.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74128.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74225.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74322.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74516.7096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74710.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74903.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75097.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75289.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75677.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76064.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76258.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76451.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 76644.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76838.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77031.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77226.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77418.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77806.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78000.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78193.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78386.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78580.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78773.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78967.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79160.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79354.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79548.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79741.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 79935.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80129.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80323.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80515.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80709.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80903.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81097.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81289.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 81483.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81871.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82065.0967741936,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82258.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82452.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82644.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 145.161290322586,
+ "time": 82839.2903225807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290.322580645156,
+ "time": 83032.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83419.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290,
+ "time": 83612.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84000.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84194.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84386.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84581.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84774.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84968.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85161.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85355.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85548.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85742.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85936.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86129.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86323.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096769,
+ "time": 86516.7096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 193.548387096774,
+ "time": 86709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87096.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87194.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87289.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87387.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88064.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88258.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88452.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88645.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88742.5161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88839.2903225807,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88936.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89032.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89226.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 145.161290322586,
+ "time": 89419.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89613.4838709678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89806.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90193.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90290.9032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90387.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90581.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90773.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90871.5483870968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90968.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91160.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91354.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91548.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91741.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91936.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92128.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 92322.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 92515.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92902.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93096.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93289.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93387.6774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93483.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93581.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94064.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94257.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94452.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94645.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94839.2903225807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94936.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95032.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95129.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95226.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95418.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95613.4838709678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95806.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096796,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96386.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96484.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96580.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96774.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96968.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97065.0967741936,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97161.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97355.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97548.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97742.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97935.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98129.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98322.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98516.7096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98709.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193.548387096774,
+ "time": 98903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 99096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99870.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100063,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100160.516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100257.290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100644,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101805.677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101999.225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 102192,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102966.967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103257.290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103354.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104128,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104515.35483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104708.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104902.451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 105289,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105676,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106063.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106354.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106450.838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 106644,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106837.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107612.129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108192,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 108386,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109160.516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109354.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109450.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110321,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110515,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110902.451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111289.548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111483.870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 111580.903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111677.677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111774.451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 96.7741935483871,
+ "time": 111871.225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 112064.774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112161.548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 112258.322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112355.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112451.870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112548.64516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 96.7741935483871,
+ "time": 112645.419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112838.967741936,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112935.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113032.516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113129.290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113226.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113322.838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113419.612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113613.161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113709.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113806.709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113903.483870968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114000.258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114097.032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 114193.806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114387.35483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114484.129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114580.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114677.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114773.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114871.225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96,
+ "time": 114967.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115160.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115257.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115354.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115451.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115548.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115644.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483871,
+ "time": 115742.193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115935.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116031.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116128.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116226.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116322.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116419.612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116516.387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116709.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116806.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116902.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116999.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117096.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117193.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 96.7741935483981,
+ "time": 117290.580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117484.129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117580.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117677.677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 117774.451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117871.225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483761,
+ "time": 118064.774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118258.322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118355.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118451.870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118548.64516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118645.419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118742.193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483871,
+ "time": 118838.967741936,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119032.516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119129.290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119226.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 119322.838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119419.612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119516.387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 119613.161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119806.709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119903.483870968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120000.258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120097.032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120193.806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120290.580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96.7741935483981,
+ "time": 120387.35483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120580.903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120677.677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120773.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 120870.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 120966.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121064.225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96,
+ "time": 121160.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121353.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121450.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121547.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121644.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 121741.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121837.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 96.7741935483871,
+ "time": 121935.193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 122128.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 122224.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 122321.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 122419.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 122515.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 122612.612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 122709.387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 122902.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 122999.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 123095.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 123192.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 123289.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 123386.64516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 96.7741935483981,
+ "time": 123483.580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 123677.129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 123773.903225806,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.4,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 774.193548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1161.29032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1354,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2709.67741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2903.22580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 3096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 3870.96774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 4258.06451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5419.35483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5612.90322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5806.45161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 6193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6967.74193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7354.83870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7741.93548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8516.12903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 9290,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10258.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13741.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17225.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17419.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17612.9032258065,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17806.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20516.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20709.6774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 193.548387096774,
+ "time": 20903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21290,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21870,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22258.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23612.9032258065,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 23806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24967.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25354.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25548.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 27096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29612,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 30387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30580.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30774.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31548.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 31935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32322.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32516.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32709.6774193548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 96.7741935483871,
+ "time": 33290.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290.322580645156,
+ "time": 33483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290,
+ "time": 34064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34451.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34645.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36774.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096769,
+ "time": 36967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 193.548387096774,
+ "time": 37161.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37741.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37935.4838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38129.0322580645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 145.161290322586,
+ "time": 39870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40064.5161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41032.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41419.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41612,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42387.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42580,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 42774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 42967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43354,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43935.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44129.0322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44322,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44709,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45096.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45290.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45677.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45870,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46064.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46451,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193.548387096774,
+ "time": 49354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50322,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 50709,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51290,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53612,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096774,
+ "time": 54967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 55741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56903.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57483.8709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57677.4193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58451.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 58838,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 193,
+ "time": 59225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59806.4516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193,
+ "time": 61161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62128.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62322.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62515.9032258064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62709,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63096.7741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63290.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63677.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63870.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64064.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64257.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64451.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64645.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64935.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65225.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65419.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66193.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66580,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66774.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66967.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67161.2903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67354.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67548.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67741.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68322.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68516.1290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68709.9032258064,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69484.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69871.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70064.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70258.2903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70451.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70645.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71129.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71418.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71612.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71805.9032258064,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72193,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72387.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72580.0967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72967.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73160.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73354.2903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73547.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73741.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73935.4838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74225.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74322.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74516.7096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74710.2580645161,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74903.8064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75097.3548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75289.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75677.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76064.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76258.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76451.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 76644.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76838.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77031.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77226.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77418.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77806.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78000.5806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78193.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78386.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78580.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78773.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78967.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79160.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79354.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79548.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79741.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 79935.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80129.6129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80323.1612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80515.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80709.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80903.8064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81097.3548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81289.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 81483.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81871.5483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82065.0967741936,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82258.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82452.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82644.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 145.161290322586,
+ "time": 82839.2903225807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290.322580645156,
+ "time": 83032.8387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83419.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 290,
+ "time": 83612.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84000.5806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84194.1290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84386.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84581.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84774.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84968.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85161.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85355.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85548.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85742.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85936.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86129.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86323.1612903226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096769,
+ "time": 86516.7096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 193.548387096774,
+ "time": 86709.6774193548,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87096.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87290.3225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87484.4516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87870.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88064.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88258.6451612903,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88452.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88645.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88838.7096774193,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89032.8387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89226.3870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 145.161290322586,
+ "time": 89419.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89613.4838709678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89806.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90193.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90387.0967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90581.2258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90773.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90967.7419354839,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91160.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91354.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91548.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91741.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91936.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92128.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 96,
+ "time": 92322.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 96,
+ "time": 92515.9677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92902.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93096.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93289.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93483.8709677419,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93870.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94064.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94257.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94452.1935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94645.7419354839,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94839.2903225807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95032.2580645161,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95226.3870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95418.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95613.4838709678,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95806.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 193.548387096796,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96386.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96580.6451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 96774.7741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96968.3225806452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97161.2903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97355.4193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97548.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97742.5161290323,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97935.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98129.6129032258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98322.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98516.7096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98709.9677419355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 193.548387096774,
+ "time": 98903.2258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 99096,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99870.1935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100063,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100258.064516129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100450,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100644,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101805.677419355,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101999.225806452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 290,
+ "time": 102192,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102966.967741935,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103354.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104128,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104515.35483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104708.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104902.451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 105289,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105676,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106063.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106451.612903226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 106644,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106837.935483871,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107225,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107418,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107612.129032258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108192,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 290,
+ "time": 108386,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109160.516129032,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109354.064516129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109934,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110321,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110515,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110902.451612903,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111096,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111289.548387097,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111483.870967742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 111677.806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111870.967741935,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112064.903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112645.161290323,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112839.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113226.193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113419.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113613.290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113806.838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114000.387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114193.548387097,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114484.258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114774.806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114967.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115161.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115355,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115549,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115741.935483871,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115936.096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116323.193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116516.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116710.290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116903.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117097.387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117290.322580645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117581.258064516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117678,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117871.806451613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118064.516129032,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118258.903225806,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118646,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118838.709677419,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119033.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119420.193548387,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 119613.741935484,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119807.290322581,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120000.838709677,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120194.387096774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 120387.096774194,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120678.258064516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 120967.806451613,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 121161.290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121354.903225806,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121548,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 121935.483870968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 122129.096774194,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 122322,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 122516.193548387,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 122709.741935484,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 122903.290322581,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 123096.838709677,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 123290.387096774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 123483.870967742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 123774.258064516,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.8,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/darnell/events.json b/assets/gameplay/songs/darnell/events.json
new file mode 100644
index 0000000..f9fc7a0
--- /dev/null
+++ b/assets/gameplay/songs/darnell/events.json
@@ -0,0 +1,334 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 3483,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 6193,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9290,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 12387,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 18580,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24967,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 31161,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 37548,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43741,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 49548,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52645,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 55741,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 58838,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 61935,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65032,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 68129,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 71225,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 74515.9677419355,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80709,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 87096,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 93290,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 99096,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 102579,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 105289,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 108386,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 111483.387096774,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 114580.64516129,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 117677.64516129,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 120773.64516129,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/darnell/metadata.json b/assets/gameplay/songs/darnell/metadata.json
new file mode 100644
index 0000000..7fc8e67
--- /dev/null
+++ b/assets/gameplay/songs/darnell/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 155
+ }
+ ],
+ "name": "Darnell",
+ "characters": {
+ "spectator": "nene",
+ "opponent": "darnell",
+ "player": "pico-playable"
+ },
+ "icon": "darnell",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "phillyStreets",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "fabs"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/eggnog/Inst.ogg b/assets/gameplay/songs/eggnog/Inst.ogg
new file mode 100644
index 0000000..2a35308
Binary files /dev/null and b/assets/gameplay/songs/eggnog/Inst.ogg differ
diff --git a/assets/gameplay/songs/eggnog/Voices-Opponent.ogg b/assets/gameplay/songs/eggnog/Voices-Opponent.ogg
new file mode 100644
index 0000000..391c569
Binary files /dev/null and b/assets/gameplay/songs/eggnog/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/eggnog/Voices-Player.ogg b/assets/gameplay/songs/eggnog/Voices-Player.ogg
new file mode 100644
index 0000000..c5fb456
Binary files /dev/null and b/assets/gameplay/songs/eggnog/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/eggnog/chart.json b/assets/gameplay/songs/eggnog/chart.json
new file mode 100644
index 0000000..c8d6aa7
--- /dev/null
+++ b/assets/gameplay/songs/eggnog/chart.json
@@ -0,0 +1,7030 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 3399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 16199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 16800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 19000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 19600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 20000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 22000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 22400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 22600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 23200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 25400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 25999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 28399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 28799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29499,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30299,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 35200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 41000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 41600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 43200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 44800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 46400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62399,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 62999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63399,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 200,
+ "time": 63599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 66200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 200,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 200,
+ "time": 67600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 68900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 69600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 70000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 200,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 72100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 72800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 73200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 76600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 77200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 77600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 88000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 89600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 91200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 92800,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.6,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 3399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16099,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 16199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 16500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 16800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 19000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 19600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 20000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 22000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 22400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 22600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 22900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 23200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 25400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 25999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 28399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 28799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29499,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30299,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 34600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 35200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 41000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 41600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 43200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 44800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 46400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52499,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55699,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61399,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62399,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62499,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62899,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 62999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63399,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 200,
+ "time": 63599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 66200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 200,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 200,
+ "time": 67600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69300,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 69600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 70000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 200,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 72800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 73200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 74100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 76600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 77200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 77600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 79400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 85800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86500,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 88000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 89600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89700,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 90000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 91200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 92800,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.9,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 3399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 16800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 19000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 19600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 20000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 400,
+ "time": 22000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 22400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 23200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 25400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 25999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 28399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 28799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30299,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 35200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 41600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 44800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 46400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62399,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62799,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 62999,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63199,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 200,
+ "time": 63599,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 66200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 200,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 200,
+ "time": 67600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 68900,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 69600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 70000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 200,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 72100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 72800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 73200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 76600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 77200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 77600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 86400,
+ "type": "alt",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87400,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87800,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 88000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 89600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90600,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91000,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 91200,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 92800,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.4,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/eggnog/events.json b/assets/gameplay/songs/eggnog/events.json
new file mode 100644
index 0000000..1c73f16
--- /dev/null
+++ b/assets/gameplay/songs/eggnog/events.json
@@ -0,0 +1,235 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 3399,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 15999,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 22400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28799,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 35200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 41600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 44800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 54599,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60799,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 63999,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 70400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 88000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 89600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 91200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/eggnog/metadata.json b/assets/gameplay/songs/eggnog/metadata.json
new file mode 100644
index 0000000..f920f5d
--- /dev/null
+++ b/assets/gameplay/songs/eggnog/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 150
+ }
+ ],
+ "name": "Eggnog",
+ "characters": {
+ "spectator": "gf-christmas",
+ "opponent": "parents-christmas",
+ "player": "bf-christmas"
+ },
+ "icon": "parents-christmas",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "mallXmas",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/fresh/Inst.ogg b/assets/gameplay/songs/fresh/Inst.ogg
new file mode 100644
index 0000000..490a727
Binary files /dev/null and b/assets/gameplay/songs/fresh/Inst.ogg differ
diff --git a/assets/gameplay/songs/fresh/Voices-Opponent.ogg b/assets/gameplay/songs/fresh/Voices-Opponent.ogg
new file mode 100644
index 0000000..000d8ca
Binary files /dev/null and b/assets/gameplay/songs/fresh/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/fresh/Voices-Player.ogg b/assets/gameplay/songs/fresh/Voices-Player.ogg
new file mode 100644
index 0000000..90cff5e
Binary files /dev/null and b/assets/gameplay/songs/fresh/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/fresh/chart.json b/assets/gameplay/songs/fresh/chart.json
new file mode 100644
index 0000000..66f33e3
--- /dev/null
+++ b/assets/gameplay/songs/fresh/chart.json
@@ -0,0 +1,4264 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 2250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 3250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 3500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 3875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 5750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 7750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 35500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 39500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 71500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 75875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.3,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 2250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 3250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 3500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 3875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 5750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 7750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 35500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 39500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 375,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 71500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 73875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 75875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.8,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 3500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 3750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 5750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 7750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 35500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 39500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 71500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/fresh/events.json b/assets/gameplay/songs/fresh/events.json
new file mode 100644
index 0000000..89d6b17
--- /dev/null
+++ b/assets/gameplay/songs/fresh/events.json
@@ -0,0 +1,356 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 2000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 4000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 6000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 12250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 14250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 18250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 20000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 22000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 32500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 36500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 42250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 44250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 50250,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 54000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 56000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 68500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 74000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 78000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/fresh/metadata.json b/assets/gameplay/songs/fresh/metadata.json
new file mode 100644
index 0000000..ac4f87b
--- /dev/null
+++ b/assets/gameplay/songs/fresh/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 120
+ }
+ ],
+ "name": "Fresh",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "dad",
+ "player": "bf"
+ },
+ "icon": "dad",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "mainStage",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/guns/Inst.ogg b/assets/gameplay/songs/guns/Inst.ogg
new file mode 100644
index 0000000..7b3e283
Binary files /dev/null and b/assets/gameplay/songs/guns/Inst.ogg differ
diff --git a/assets/gameplay/songs/guns/Voices-Opponent.ogg b/assets/gameplay/songs/guns/Voices-Opponent.ogg
new file mode 100644
index 0000000..923f3ba
Binary files /dev/null and b/assets/gameplay/songs/guns/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/guns/Voices-Player.ogg b/assets/gameplay/songs/guns/Voices-Player.ogg
new file mode 100644
index 0000000..2bb9553
Binary files /dev/null and b/assets/gameplay/songs/guns/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/guns/chart.json b/assets/gameplay/songs/guns/chart.json
new file mode 100644
index 0000000..dbf701a
--- /dev/null
+++ b/assets/gameplay/songs/guns/chart.json
@@ -0,0 +1,12987 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 10378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 10702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 11351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 162,
+ "time": 12324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 162,
+ "time": 12648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 15891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 16540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 162,
+ "time": 17513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 162,
+ "time": 17837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 20756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 21405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 23351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 243,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 25945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 26594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 28540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 243,
+ "time": 29189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 33729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 567,
+ "time": 35027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 486,
+ "time": 35675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 648,
+ "time": 41513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 243,
+ "time": 45405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 45729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 243,
+ "time": 46054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 162,
+ "time": 46378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 53027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 648,
+ "time": 57081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 58216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 648,
+ "time": 62270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 81,
+ "time": 64864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 81,
+ "time": 65189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 65513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 65837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 67459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 81,
+ "time": 70054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 81,
+ "time": 70378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 70702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 71027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 72648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 73297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 83675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 648,
+ "time": 93405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 93729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 98432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 103459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 108810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 113837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 114162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 114324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 116108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 116270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 116594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 116756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 119513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 120162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 121135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 121297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 121459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 121621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 121783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 121945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 122108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 122270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 122432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 122594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 122756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 122918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 123081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 123243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 123405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 123567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 123729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 123891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 124054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 124216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 124378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 124459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 124702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 124864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 124945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 125189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 125351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 125594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 126324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 126648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 126972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 127297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 127621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 127945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 128108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 128270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 128432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 128594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 128756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 128918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 129405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 129891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 130054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 130216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 130378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 130540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 130702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 130864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 131027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 131189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 131351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 131513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 131675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 131837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 131999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 132162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 132324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 132486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 132648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 132810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 132972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 133135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 133297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 133459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 133621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 133783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 133945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 134108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 134270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 134432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 134594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 134756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 134837,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 2,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 10378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 10702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 243,
+ "time": 12324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 162,
+ "time": 13945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 15891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 243,
+ "time": 17513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 162,
+ "time": 19135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 20756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 21405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 25945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 26594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 486,
+ "time": 33729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 486,
+ "time": 35027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 486,
+ "time": 35675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 324,
+ "time": 41513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 243,
+ "time": 45405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 45729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 243,
+ "time": 46054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 162,
+ "time": 46378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 53027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 324,
+ "time": 57081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 58216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 324,
+ "time": 62270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 67459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 72648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 73297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 162,
+ "time": 76216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 162,
+ "time": 76216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 83675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 162,
+ "time": 86594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 162,
+ "time": 86594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 324,
+ "time": 93405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 98432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 102486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 103459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 103702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 243,
+ "time": 108810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 113837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 114081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 648,
+ "time": 114162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 114324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 81,
+ "time": 114648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 81,
+ "time": 115297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 116108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 116189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 116351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 116594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 116756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 116918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 117081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 117243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 117567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 118054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 118216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 118378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 118702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 119027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 119513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 120162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 120648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 121135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 121297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 121459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 121621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 121783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 121864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 121945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 122108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 122270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 122432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 122513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 122594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 122756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 122918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 123081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 123162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 123243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 123405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 123567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 123729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 123891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 124054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 124216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 124378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 124459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 124702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 124864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 124945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 81,
+ "time": 125027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 125351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 125594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 81,
+ "time": 125675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 125837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 125999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 126081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 126324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 126486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 126729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 126972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 127135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 127378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 127459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 127621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 127702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 127945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 128108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 128270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 128351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 128432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 128594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 128675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 81,
+ "time": 128756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 128918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 128999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 129081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 129405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 129567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 129891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 130054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 130216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 130297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 130378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 130540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 130702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 130864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 130945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 131027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 131189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 131351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 131513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 131675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 131837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 131999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 132162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 132243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 132324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 132486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 132648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 132810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 132891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 132972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 133135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 133297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 133459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 133540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 133621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 133783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 133945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 134108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 134270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 134432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 134594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 134756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 134837,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.5,
+ "rating": 5
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 10378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 33729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 567,
+ "time": 35027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 486,
+ "time": 35675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 648,
+ "time": 41513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 567,
+ "time": 45405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 567,
+ "time": 46054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 405,
+ "time": 53027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 648,
+ "time": 57081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 405,
+ "time": 58216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 648,
+ "time": 62270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 972,
+ "time": 67459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 71999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 972,
+ "time": 72648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 73297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 243,
+ "time": 73621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 83675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 243,
+ "time": 83999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 648,
+ "time": 93405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 98432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100540,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100864,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101513,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101837,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 106702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 243,
+ "time": 108810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110594,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110918,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111243,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111891,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112216,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 113837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 648,
+ "time": 114162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114486,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114810,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115459,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115783,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116108,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 116270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 116432,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 116756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117081,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 117243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117405,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 117729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118054,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118378,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118702,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119027,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 119189,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119351,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119675,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 119999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120324,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120648,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 120972,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 121135,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 121297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 121621,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 121945,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 122270,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 122594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 122918,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 123243,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 123567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 123729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 123891,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124216,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124540,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 124864,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125189,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 125513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 125837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126486,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 126648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126810,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 127135,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 127459,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 127621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 127783,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 128108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 128432,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 128756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129081,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 129729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 130054,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 130378,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 130702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 131027,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 131351,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 131513,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 131675,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 131999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 132324,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 132648,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 132972,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 133297,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 133621,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 133945,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 134108,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 134270,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 134594,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.4,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/guns/events.json b/assets/gameplay/songs/guns/events.json
new file mode 100644
index 0000000..e162667
--- /dev/null
+++ b/assets/gameplay/songs/guns/events.json
@@ -0,0 +1,213 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10378,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 15567,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 20756,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 25945,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 31135,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 36324,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 41513,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46702,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 51891,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57081,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 62270,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67459,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72648,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 83027,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 93405,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 103783,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 114162,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 124540,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/guns/metadata.json b/assets/gameplay/songs/guns/metadata.json
new file mode 100644
index 0000000..318140f
--- /dev/null
+++ b/assets/gameplay/songs/guns/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 185
+ }
+ ],
+ "name": "Guns",
+ "characters": {
+ "spectator": "gf-tankmen",
+ "opponent": "tankman",
+ "player": "bf"
+ },
+ "icon": "tankman",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "tankmanBattlefield",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/high/Inst.ogg b/assets/gameplay/songs/high/Inst.ogg
new file mode 100644
index 0000000..5ab927b
Binary files /dev/null and b/assets/gameplay/songs/high/Inst.ogg differ
diff --git a/assets/gameplay/songs/high/Voices-Opponent.ogg b/assets/gameplay/songs/high/Voices-Opponent.ogg
new file mode 100644
index 0000000..9a8c5da
Binary files /dev/null and b/assets/gameplay/songs/high/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/high/Voices-Player.ogg b/assets/gameplay/songs/high/Voices-Player.ogg
new file mode 100644
index 0000000..08e88b3
Binary files /dev/null and b/assets/gameplay/songs/high/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/high/chart.json b/assets/gameplay/songs/high/chart.json
new file mode 100644
index 0000000..73ebe46
--- /dev/null
+++ b/assets/gameplay/songs/high/chart.json
@@ -0,0 +1,7435 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 3840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 17280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 17280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 17760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 18240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 18720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 19440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 24960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 25440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 25920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 35040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 35520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 37440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 37920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 38880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 39360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 39840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 41280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 41760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 42240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 42720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 42720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 43680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 43680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 44160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 45120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 45120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 46080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 46080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1440,
+ "time": 46560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 46560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 47040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 47520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 48960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 49440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 49920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 720,
+ "time": 49920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 51360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 51840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 53280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 53760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 55200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 480,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 57600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 59040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 59520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 60960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 61440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 62880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 480,
+ "time": 65280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 65760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 66240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 66720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 68160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 68640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 69120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 70080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 70560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 72480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 72960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 73440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 73440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 73920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 73920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 74400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 74880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 75840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 75840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 76320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 76320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1440,
+ "time": 77280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 77280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 77760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 78240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 79680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 80160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 80640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 80640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 82080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 82080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 82560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 82560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 83280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 83280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 84480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 84960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 85440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 85920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 86880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 87360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 88320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 88320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 89760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 89760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 90240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 90240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 90960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 90960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 91680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 92160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 92640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 93120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 93600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 94080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 94560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 95040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 960,
+ "time": 96000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 960,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.8,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 3840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 11040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 17280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 17520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 17760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 18240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 18720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 19440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 240,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 24960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 25440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 25920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 240,
+ "time": 28680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 35040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 35520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 37440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 37920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 38880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 39360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 39840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 240,
+ "time": 41280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 41760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 42240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 42720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 42720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 43680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 43680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 44160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 45120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 45120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 46080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 46080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1440,
+ "time": 46560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 46560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 47040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 47520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 240,
+ "time": 48960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 49440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 720,
+ "time": 49920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 49920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 51360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 51840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 53280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 53760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 55200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 120,
+ "time": 56880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 480,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 57600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 59040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 59520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 60960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 61440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 62880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 120,
+ "time": 64560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 480,
+ "time": 65280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 65760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 66240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 66720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 68160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 68640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 69120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 70080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 70560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 240,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 72480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 72960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 73440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 73440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 73920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 73920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 74400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 74880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 75840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 75840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 76320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 76320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1440,
+ "time": 77280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 77280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 77760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 78240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 240,
+ "time": 79680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 80160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 80640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 80640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 82080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 82080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 82560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 82560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 83280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 83280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 84480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 84960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 85440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 85920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 86880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 87360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 88320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 88320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 89760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 89760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 90240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 90240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 90960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 90960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 91680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 120,
+ "time": 91920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 92160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 92640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 93120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 93120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 93600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 94080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 94560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 95040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 960,
+ "time": 96000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 960,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 3840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 17280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 17280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 17760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 18240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 18720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 24960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 25440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 25920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 35040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 35520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 37440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 37920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 38880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 39360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 39840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 41280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 41760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 420,
+ "time": 42240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 42720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 42720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 43200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 43680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 43680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 44160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 45120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 45120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 46080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 46080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 46560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1440,
+ "time": 46560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 47040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 47520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 48960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 49440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 49920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 720,
+ "time": 49920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 51360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 51840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 53280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 53760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 55200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 57600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 480,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 59040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 59520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 60960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 61440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 62880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 480,
+ "time": 65280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 65760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 66240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 66720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 68160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 68640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 69120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 70080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 70560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 72480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 420,
+ "time": 72960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 73440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 73440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 73920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 73920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 74400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 74880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 75840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 75840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 240,
+ "time": 76320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 76320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 77280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1440,
+ "time": 77280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 77760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 78240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78720,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 240,
+ "time": 79680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 240,
+ "time": 80160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 80640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 80640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 82080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 82080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 82560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 82560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 83280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 83280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84480,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 84480,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84720,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 84960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 85440,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 85920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86880,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 86880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87360,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 87360,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87840,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 88320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 960,
+ "time": 88320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 89760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 89760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 90240,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 90240,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 90960,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 90960,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 91680,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 91680,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92160,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 92160,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 92640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93120,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 93120,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 360,
+ "time": 93600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93840,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94080,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 360,
+ "time": 94080,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94560,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 360,
+ "time": 94560,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95040,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 360,
+ "time": 95040,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95520,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95760,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95760,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95880,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 960,
+ "time": 96000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 960,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.3,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/high/events.json b/assets/gameplay/songs/high/events.json
new file mode 100644
index 0000000..39c3d5d
--- /dev/null
+++ b/assets/gameplay/songs/high/events.json
@@ -0,0 +1,147 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 3840,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 11520,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 26880,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 34560,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 42240,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 49920,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65280,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72960,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 90240,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 92160,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/high/metadata.json b/assets/gameplay/songs/high/metadata.json
new file mode 100644
index 0000000..60f09a2
--- /dev/null
+++ b/assets/gameplay/songs/high/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 125
+ }
+ ],
+ "name": "High",
+ "characters": {
+ "spectator": "gf-car",
+ "opponent": "mom-car",
+ "player": "bf-car"
+ },
+ "icon": "mom",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "limoRide",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/lit-up/Inst.ogg b/assets/gameplay/songs/lit-up/Inst.ogg
new file mode 100644
index 0000000..eb40ea4
Binary files /dev/null and b/assets/gameplay/songs/lit-up/Inst.ogg differ
diff --git a/assets/gameplay/songs/lit-up/Voices-Opponent.ogg b/assets/gameplay/songs/lit-up/Voices-Opponent.ogg
new file mode 100644
index 0000000..0d2759f
Binary files /dev/null and b/assets/gameplay/songs/lit-up/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/lit-up/Voices-Player.ogg b/assets/gameplay/songs/lit-up/Voices-Player.ogg
new file mode 100644
index 0000000..802979f
Binary files /dev/null and b/assets/gameplay/songs/lit-up/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/lit-up/chart.json b/assets/gameplay/songs/lit-up/chart.json
new file mode 100644
index 0000000..1b8a2ff
--- /dev/null
+++ b/assets/gameplay/songs/lit-up/chart.json
@@ -0,0 +1,13357 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 511.363636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1022.72727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1363.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1704.54545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2045.45454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2215.90909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2386.36363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2556.81818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2727.27272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3238.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3920.45454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4119.31818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4431.81818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4772.72727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4943.18181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5113.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5284.09090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5454.54545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5965.90909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6306.81818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6392.04545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6477.27272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6647.72727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6818.18181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7159.09090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7670.45454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7840.90909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8011.36363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8181.81818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8693.18181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9034.09090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9119.31818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9204.54545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9545.45454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9886.36363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12954.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14488.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14829.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16363.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16704.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17215.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17812.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17982.9545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18835.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19005.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20071.0227272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20454.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21306.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21647.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22329.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22329.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23181.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23352.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23522.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23693.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23863.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24034.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24204.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24204.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24715.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25056.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25653.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26079.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26420.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26761.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27102.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27784.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27954.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28806.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29147.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29147.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30085.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31107.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31704.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33238.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34090.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34261.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34431.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34602.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34772.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34943.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35113.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35284.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35965.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36221.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36306.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36306.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36647.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36903.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36988.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37329.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37329.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38267.0454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38352.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39289.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39715.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40994.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41079.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41420.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41676.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42102.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42357.9545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42613.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42954.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42954.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43039.7727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43806.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44147.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44403.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44488.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44829.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45085.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45170.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45340.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45511.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45681.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45852.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46022.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46193.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46363.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46534.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46704.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47130.6818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47215.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47556.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47812.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48238.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49176.1363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49857.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50965.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51903.4090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52329.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52585.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53181.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53267.0454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53352.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53522.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53693.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53863.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53948.8636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54034.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54204.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54545.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55056.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55568.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57102.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59829.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60937.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62471.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62556.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63664.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63920.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65198.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66306.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68181.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69034.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69715.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70056.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70312.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72357.9545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72528.4090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72954.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73380.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73551.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74573.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74829.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75767.0454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76534.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76704.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77130.6818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77215.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77556.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77812.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78238.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79090.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79261.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79431.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79602.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79772.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79857.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79943.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80113.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80284.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80539.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80965.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80965.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81306.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81903.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81988.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82585.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82670.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83011.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83352.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84034.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84545.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84630.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84715.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84886.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85056.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85227.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85312.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85397.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85568.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85738.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85994.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86079.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86420.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86676.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86846.5909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87102.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87443.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87613.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87954.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87954.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88039.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88721.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88806.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89147.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89147.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89829.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90170.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90340.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90511.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90681.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90767.0454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90852.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91022.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91193.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91363.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91448.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91534.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91704.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92215.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92556.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92812.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93494.3181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93835.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93920.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95539.7727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95965.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96221.5909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96306.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96647.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96903.4090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97329.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97585.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98181.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98352.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98522.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98693.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98863.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99034.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99204.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99417.6136363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99545.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99715.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99886.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100056.818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100056.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 100227.272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100397.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100568.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 100568.181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100909.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101079.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101590.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101761.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101931.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102017.045454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102102.272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102272.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102443.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102613.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102784.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102954.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103295.454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103465.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103636.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103636.363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103806.818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103977.272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 104147.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104147.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104318.181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104488.636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104659.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104659.090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 104829.545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105170.454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105340.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105511.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105511.363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105681.818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105852.272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106022.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 106022.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106363.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106448.863636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106534.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106704.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107045.454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107130.681818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107215.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107386.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107556.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107727.272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107897.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108068.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108238.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108409.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108579.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108920.454545455,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 2.2,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 511.363636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1022.72727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1363.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1704.54545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2045.45454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2215.90909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2386.36363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2556.81818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2727.27272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3238.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3920.45454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4090.90909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4431.81818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4772.72727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4943.18181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5113.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5284.09090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5454.54545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5965.90909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6306.81818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6392.04545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6477.27272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6647.72727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6818.18181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7159.09090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7670.45454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7840.90909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7926.13636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8011.36363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8096.59090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8181.81818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8693.18181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9034.09090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9119.31818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9204.54545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9545.45454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9886.36363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10653.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10823.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12954.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14488.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14829.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15767.0454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15937.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16363.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16704.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17215.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17812.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17982.9545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18835.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19005.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20028.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20454.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20965.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21221.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21306.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21392.0454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21647.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22329.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22329.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23181.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23352.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23522.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23693.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23863.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24034.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24204.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24204.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24715.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25056.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25653.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25823.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26079.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26420.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26761.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27102.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27784.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27954.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28806.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29147.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29147.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30085.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30767.0454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31107.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31278.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31704.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32556.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33238.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33494.3181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34090.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34176.1363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34261.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34431.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34602.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34772.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34943.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35113.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35284.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35454.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35625.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35795.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35965.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35966.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36136.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36221.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36306.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36307.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36477.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36648.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36903.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36988.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37329.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37329.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37670.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38011.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38267.0454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38352.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38948.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39034.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39289.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39460.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39715.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40056.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40994.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41079.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41420.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41676.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42102.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42272.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42357.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42442.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42613.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42783.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42953.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42954.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43039.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43124.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43294.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43465.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43806.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44147.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44147.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44403.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44488.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44829.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45085.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45170.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45340.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45511.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45681.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45852.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46022.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46193.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46363.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46534.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46704.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46875.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47045.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47130.6818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47216.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47386.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47557.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47812.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48238.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48920.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49176.1363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49857.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50198.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50369.3181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50965.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51306.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51647.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51903.4090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52329.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52585.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53181.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53266.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53351.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53522,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53692.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53862.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53948.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54033.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54203.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54374.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55056.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55567.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55908.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56249.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56590.4545454546,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56760.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56931.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57101.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57272.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57783.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58635.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58976.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59317.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59488.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59658.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59829.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60937.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62471.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62556.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62642.0454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63664.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63920.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65198.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65369.3181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65795,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66135.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66306.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66476.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66817.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67158.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67499.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67840.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68181.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69034.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69715.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70056.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70312.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70482.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71249.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71590.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71760.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71931.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72272.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72357.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72442.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72527.9545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72613.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72954.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73295,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73380.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73465.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73550.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74829.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75510.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75767.0454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75937.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76534.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76704.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77130.6818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77215.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77556.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77812.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77897.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78238.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78920.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79091.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79261.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79432.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79602.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79773.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79857.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79943.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80284.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80539.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80965.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80965.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81306.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81306.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81647.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81647.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81903.4090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81988.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82329.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82585.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82670.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82926.1363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83011.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83096.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83352.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84034.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84545.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84630.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84715.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84886.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85056.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85227.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85312.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85397.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85568.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85738.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85908.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85993.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86078.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86249.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86419.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86590.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86675.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86760.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86931.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87101.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87272.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87443.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87613.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87613.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87784.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87954.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87954.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88039.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88465.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88721.5909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88806.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89147.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89147.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89488.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89488.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89829.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89829.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90170.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90341.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90511.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90682.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90767.0454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90852.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91023,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91193.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91363.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91448.8636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91534.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91704.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92215.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92556.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92556.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92812.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93494.3181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93835.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93920.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94005.6818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95539.7727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95965.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96221.5909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96306.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96647.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96817.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96902.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96987.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97158.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97328.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97499.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97584.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97669.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97840.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98010.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98181.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98352.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98522.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98693.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98863.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99034,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99204.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99374.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99545.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99715.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99886.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100056.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100056.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 100227.181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100397.636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100568.090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100568.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 100909.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101079.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101420.454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101590.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101761.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101931.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102017.045454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102102.272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 102187.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102272.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102443.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102613.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102784.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102954.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103295.454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103465.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103636.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103636.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103807.181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103977.636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104147.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104148.090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 104318.545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104489,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104659.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104659.454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 104829.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105000.363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105170.818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105341.272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105511.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105511.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105682.181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105852.636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 106022.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106023.090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106363.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106448.863636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106534.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106704.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107045.454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107130.681818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107215.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107386.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107471.590909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107556.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107642.045454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107727.272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107897.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108068.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108238.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108409.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108579.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108920.454545455,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.2,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 511.363636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1022.72727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1363.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1704.54545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2045.45454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2215.90909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2386.36363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2585.22727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2727.27272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3238.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3920.45454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4090.90909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4431.81818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4772.72727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4943.18181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5113.63636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5284.09090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5454.54545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5965.90909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6306.81818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6392.04545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6562.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6818.18181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7159.09090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7840.90909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8181.81818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8693.18181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9034.09090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9119.31818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9289.77272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9545.45454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9886.36363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12102.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12954.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14488.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16363.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16704.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17215.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17556.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17812.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17982.9545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18835.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19005.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20056.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20454.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21306.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21647.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22329.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22329.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23181.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23352.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23522.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23693.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23863.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24034.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24204.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24204.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24715.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26761.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27102.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27784.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27954.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28806.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29147.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29147.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31704.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32215.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32556.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33238.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34090.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34261.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34431.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34602.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34772.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34943.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34943.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35113.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35284.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35454.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35625.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35795.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35966.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36136.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36307.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36477.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36648.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37329.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37499.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37670.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37840.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40994.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41079.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41420.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41676.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42102.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42272.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42272.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42357.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42442.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42613,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42613.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42783.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42953.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42954.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43039.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43124.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43294.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43465.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43636.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43806.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44147.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44318.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44659.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44829.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44999.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45170.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45340.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45511.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45681.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45681.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45852.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45852.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46022.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46022.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46193.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46363.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46534.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46534.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46704.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46875.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47045.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47216.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47386.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47557.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47897.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48238.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48749.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49431.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51136.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51477.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51818.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51903.4090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51988.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52329.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52585.2272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52670.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53011.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53181.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53266.3181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53351.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53522,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53692.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53862.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53948.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54033.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54203.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54374.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54545.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55056.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55568.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57130.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59488.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59829.5454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60511.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60937.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61107.9545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62556.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63238.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63579.5454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63664.7727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63835.2272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65113.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65284.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66306.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66477.2727272728,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66647.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66818.1818181819,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67159.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67500.0000000001,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67840.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68181.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68181.8181818181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68863.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69034.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69545.4545454546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70227.2727272728,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70397.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70568.1818181819,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70738.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70909.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71590.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71761.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71931.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72102.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72272.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72357.9545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72528.4090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72613.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72954.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73380.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73465.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73551.1363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73636.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73806.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74318.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74602.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75340.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75852.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76022.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76193.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76534.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76704.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77045.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77215.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77386.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77556.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77727.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77727.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77897.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78068.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78068.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78238.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78409.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78579.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78579.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78920.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79091.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79261.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79261.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79431.8181818181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79432.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79602.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79772.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79773.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79943.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80113.6363636363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80284.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80965.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81136.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81306.7272727272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81306.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81477.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81647.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81988.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83522.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83863.6363636363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84545.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84630.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84715.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84886.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84886.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85056.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85227.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85227.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85312.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85397.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85568.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85568.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85738.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85908.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85909.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85993.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86078.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86249.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86419.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86590.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86590.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86675.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86760.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86931.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86931.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87101.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87272.6363636363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87272.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87443.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87443.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87613.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87613.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87784.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87954.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87954.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88295.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88295.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88465.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88636.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88636.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88806.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88977.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88977.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89147.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89318.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89318.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89488.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89488.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89659,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89659.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89829.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90170.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90170.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90340.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90341.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90511.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90681.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90682.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90852.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91022.7272727272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91023,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91193.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91363.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91363.6363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91534.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91704.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91704.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92045.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92045.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92215.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92215.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92386.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92386.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92556.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92727.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92897.7272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93068.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93409.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94090.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94431.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94772.6363636363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95113.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95454.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95454.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95539.7727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95795.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95795.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95965.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96136.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96136.3636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96221.5909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96306.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 96477.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96477.2727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96647.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96817.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96818.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96902.6818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96987.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97158.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97159.0909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97328.8181818181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97499.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97584.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97669.7272727272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97840.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97840.9090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98010.6363636363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98181.8181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98181.8181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98352.2727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98522.7272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98693.1818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98693.1818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98863.6363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99034.0909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99204.5454545454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99204.5454545454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99417.6136363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99545.4545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99545.4545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99715.9090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99886.3636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100056.818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100056.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 100227.272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100397.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100568.181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100568.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 100909.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101079.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 101590.909090909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101931.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102272.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102613.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102954.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103295.454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103636.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 103636.363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103806.818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103977.272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104147.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104147.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 104318.181818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104488.636363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104659.090909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104659.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104829.545454545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105170.454545455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105340.909090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105511.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105511.363636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105681.818181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105852.272727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106022.727272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 106022.727272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106363.636363636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106534.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106704.545454545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107045.454545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107386.363636364,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107556.818181818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107727.272727273,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108068.181818182,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108409.090909091,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108750,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 2.2,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/lit-up/events.json b/assets/gameplay/songs/lit-up/events.json
new file mode 100644
index 0000000..812f3d9
--- /dev/null
+++ b/assets/gameplay/songs/lit-up/events.json
@@ -0,0 +1,284 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 5454.54545454545,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10909.0909090909,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 13636.3636363636,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16363.6363636364,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19090.9090909091,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 21818.1818181818,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24545.4545454545,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 27272.7272727273,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 30000,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 32727.2727272727,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 38181.8181818182,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43636.3636363636,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 49090.9090909091,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 54545.4545454545,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60000,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65454.5454545454,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 68181.8181818182,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 70909.0909090909,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 73636.3636363636,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76363.6363636364,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 81818.1818181818,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 87272.7272727273,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 92727.2727272727,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 98181.8181818182,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 100909.090909091,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 103636.363636364,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ },
+ {
+ "name": "camera",
+ "time": 106363.636363636,
+ "args": {
+ "pos": {
+ "x": "0",
+ "y": "0"
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/lit-up/metadata.json b/assets/gameplay/songs/lit-up/metadata.json
new file mode 100644
index 0000000..2a7b46e
--- /dev/null
+++ b/assets/gameplay/songs/lit-up/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 176
+ }
+ ],
+ "name": "Lit Up",
+ "characters": {
+ "spectator": "nene",
+ "opponent": "darnell",
+ "player": "pico-playable"
+ },
+ "icon": "darnell",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "phillyStreets",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "Jenny Crowe + Spazkid"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/milf/Inst.ogg b/assets/gameplay/songs/milf/Inst.ogg
new file mode 100644
index 0000000..5932a7e
Binary files /dev/null and b/assets/gameplay/songs/milf/Inst.ogg differ
diff --git a/assets/gameplay/songs/milf/Voices-Opponent.ogg b/assets/gameplay/songs/milf/Voices-Opponent.ogg
new file mode 100644
index 0000000..cf1650c
Binary files /dev/null and b/assets/gameplay/songs/milf/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/milf/Voices-Player.ogg b/assets/gameplay/songs/milf/Voices-Player.ogg
new file mode 100644
index 0000000..5acf606
Binary files /dev/null and b/assets/gameplay/songs/milf/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/milf/chart.json b/assets/gameplay/songs/milf/chart.json
new file mode 100644
index 0000000..ba3f2de
--- /dev/null
+++ b/assets/gameplay/songs/milf/chart.json
@@ -0,0 +1,9866 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 2666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 3583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 6250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 8916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 11583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 13333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 14500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 15166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 15833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 16333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 18666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 19833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 21166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 21666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 27833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 28333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 29333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 33166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 33666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 34666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 36666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 39333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 39666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 41333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 44666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 45333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 46500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 47166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 47833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 48333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 48666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 50666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 51833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 53166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 53666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64083.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64416.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 70500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 75833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 76333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76833.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 77333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 77333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 78666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 78666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 79333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 166,
+ "time": 79333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80166.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80166.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80666.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80666.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 82333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 82333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 82666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 82666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 83000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 83333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 83666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 84333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 84666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 84666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 85333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 85666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 86000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 86333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 86666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86833.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 87333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 87333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 87666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 87666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88833.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88916.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 90333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91583.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92333.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94166.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94166.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 95666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 95666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96833.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96833.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96916.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96916.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97333.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97666.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97666.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 98500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 98666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 98666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 99666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 99833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 100500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 101166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 101666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 102000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 103833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 104000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 104000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 105166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 105833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 106500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 107000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 107333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 110500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 110833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 113166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 113666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 114666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 118500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 118833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 119000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 119166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 119333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 119666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 119833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 833,
+ "time": 120000,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 2.2,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 2666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 3583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 6250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 8916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 11583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 13333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 14583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 15250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 15833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 16333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 666,
+ "time": 18666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 19916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 20583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 21166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 21666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 25666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 27833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 28333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 29333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 33166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 33666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 34666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 36666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 83,
+ "time": 37166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 39333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 39666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 41333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 83,
+ "time": 42500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 44666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 45333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 46583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 47250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 47833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 48333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 48666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 50666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 51916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 52583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 53166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 53666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 68333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 70500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 73666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 75833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 77333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 77333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 78666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 78666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 166,
+ "time": 79333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 79333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 83,
+ "time": 79833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 83,
+ "time": 79833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 82333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 82333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 82666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 82666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 83000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 83333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 83666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 84333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 84666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 84666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 83,
+ "time": 85166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 85333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 85666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 86000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 86333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 86666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 87333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 87333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 87666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 87666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 90333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 92000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 95583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 95666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 95666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 96916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 98250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 98500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 98666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 98666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 99666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 99916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 100583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 101166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 101666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 102000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 103166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 103833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 104000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 104000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 105166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 333,
+ "time": 105250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 105916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 106500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 107000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 107333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 108500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 108833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 109500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 110500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 110833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 111000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 112583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 113166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 113500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 113833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 114666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 116333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 118500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 118833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 119000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 119083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 119166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 119333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 119500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 119583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 119666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 119833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 833,
+ "time": 120000,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.6,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 2666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 3583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 6250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8333.33333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 333.333333333333,
+ "time": 8666.66666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 416.666666666667,
+ "time": 11333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 13333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 14500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 15166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 15833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 16333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 18666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 19833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 21166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 21666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23833.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 27833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 28333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 29333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 33166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 33666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 34666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 36666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 39333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 39666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 41333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 44666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 45333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 46500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 47166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 47833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 48333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 48666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 50666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 51833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 53166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 53666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56666.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56833.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58166.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58333.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59666.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60333.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62166.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63666.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65666.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 70500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 75833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 76333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 77333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 77333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 78666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 78666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 79333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 79333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 82333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 82333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 82666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 82666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 83000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 83333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 83666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 166,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 84333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 84666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 166,
+ "time": 84666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 85333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 85666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 86000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 86333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 86666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 87333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 87333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 87666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 87666.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 90333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 93666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 95666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 95666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 96666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96916.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96916.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97083.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97083.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97333.3333333333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97333.3333333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97666.6666666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97666.6666666667,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 98666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 98666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 99833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 100500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 101166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 101666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 102000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 104000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 666,
+ "time": 104000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 105166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 105833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 106500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 107000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 107333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 108333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 109333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 110500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 110833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 111583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 112916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 113166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 113666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 333,
+ "time": 114666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 115583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 118500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 83,
+ "time": 119000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 119333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 119666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 833,
+ "time": 120000,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.9,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/milf/events.json b/assets/gameplay/songs/milf/events.json
new file mode 100644
index 0000000..27f3e7d
--- /dev/null
+++ b/assets/gameplay/songs/milf/events.json
@@ -0,0 +1,257 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 2666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 13333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 18666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 29333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 34666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 45333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 50666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 56000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 61333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 66666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 77333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 89000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 93333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 98666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 104000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 109333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 114666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/milf/metadata.json b/assets/gameplay/songs/milf/metadata.json
new file mode 100644
index 0000000..555de08
--- /dev/null
+++ b/assets/gameplay/songs/milf/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 180
+ }
+ ],
+ "name": "M.I.L.F",
+ "characters": {
+ "spectator": "gf-car",
+ "opponent": "mom-car",
+ "player": "bf-car"
+ },
+ "icon": "mom",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "limoRide",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH + Spazkid"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/monster/Inst.ogg b/assets/gameplay/songs/monster/Inst.ogg
new file mode 100644
index 0000000..7169587
Binary files /dev/null and b/assets/gameplay/songs/monster/Inst.ogg differ
diff --git a/assets/gameplay/songs/monster/Voices-Opponent.ogg b/assets/gameplay/songs/monster/Voices-Opponent.ogg
new file mode 100644
index 0000000..b5eb155
Binary files /dev/null and b/assets/gameplay/songs/monster/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/monster/Voices-Player.ogg b/assets/gameplay/songs/monster/Voices-Player.ogg
new file mode 100644
index 0000000..598e73c
Binary files /dev/null and b/assets/gameplay/songs/monster/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/monster/chart.json b/assets/gameplay/songs/monster/chart.json
new file mode 100644
index 0000000..b39a896
--- /dev/null
+++ b/assets/gameplay/songs/monster/chart.json
@@ -0,0 +1,8039 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 2526.31578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 3473.31578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 3789.31578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 4736.31578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 5052.31578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 7578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1105,
+ "time": 7578.31578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 8526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 8842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1263.26315789474,
+ "time": 8842.31578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 9789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 10105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 10184.2105263158,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13105.5789473684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13500.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 13894.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 14447.6842105263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14842.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14999.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15157.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15473.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15789.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16105.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 16421.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 17052.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 18947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 19578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 21473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 22105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23368.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23684.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 23999.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 24552.9473684211,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24868.7368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 25263.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 25816.1052631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1105,
+ "time": 26447.6842105263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 29052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 29684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 30315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 30947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1105,
+ "time": 31578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 631,
+ "time": 32842.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33789.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33789.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 34105.5789473684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 34421.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 34736.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35052.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35052.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35368.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35368.7368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 118,
+ "time": 35683.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35998.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 590,
+ "time": 36313.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 631,
+ "time": 37258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38205,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 38521,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 38837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 39152,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39468,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39784,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 118,
+ "time": 40099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40414,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 590,
+ "time": 40729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44293.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44864.8872180451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45217.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45217.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45722.030075188,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46074.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46074.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 428,
+ "time": 46359.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 857,
+ "time": 46931.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 428,
+ "time": 50931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 857,
+ "time": 51502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 148,
+ "time": 53502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 53788.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 54074.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 54359.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54645.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54645.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54931.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 55217.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 857,
+ "time": 55502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 857,
+ "time": 55502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56645.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56788.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56931.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57359.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 148,
+ "time": 58074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 58359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 58645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 58931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 59788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 857,
+ "time": 60074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62293.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62436.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62579.1729323308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62864.8872180451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63007.7443609023,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63150.6015037594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63436.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63579.1729323308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63722.030075188,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63864.8872180451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64007.7443609023,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64150.6015037594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 285,
+ "time": 64293.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 285,
+ "time": 64864.8872180451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 285,
+ "time": 64864.8872180451,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 65436.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66007.7443609023,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66007.7443609023,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 66293.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67078.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67650.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68364.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68650.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 285.714285714294,
+ "time": 68936,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 285,
+ "time": 69502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 70074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 70931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1000,
+ "time": 71502.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 1000,
+ "time": 72579.1729323308,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73722.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73865.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74008.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74151.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74293.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74436.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74579.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74722.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74865.4586466166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75150.6015037594,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75436.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75722.030075188,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 1000,
+ "time": 76074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1000,
+ "time": 77217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78364.5714285714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78483.619047619,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78626.4761904762,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78936,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79055.0476190476,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79197.9047619047,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80055.0476190476,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80340.7619047619,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 82007.5473684211,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 82639.5473684211,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83270.5473684211,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 83586.5473684211,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473.684210526316,
+ "time": 84297.1263157895,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 447.36842105262,
+ "time": 84928.7052631579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 85862,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 86493.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 86809.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 87125.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 87441.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 87756.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 88072.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 184.210526315783,
+ "time": 88718.1789473684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 89019,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 89335,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157.894736842105,
+ "time": 89665.5473684211,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157.894736842105,
+ "time": 89981.3368421053,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 90283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 90598.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90929.0210526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157.894736842105,
+ "time": 91086.9157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 315,
+ "time": 91481.652631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 92177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92493,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 92809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 315,
+ "time": 93125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 94072.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94481.652631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 94704.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95019.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 95651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 96283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96598,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97165.8631578948,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97323.7578947369,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 97481.652631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 97862.3157894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 98429.0210526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 98744.8105263158,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99598,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 99756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 100072,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 100704,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 101019,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 101271.126315789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101967.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315.789473684211,
+ "time": 102139.547368421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102598.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102914.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103230.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 103546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104335,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104493,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 105692.178947369,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 106323.757894737,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106955.336842106,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 107271.12631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 107586.915789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107902.705263158,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 108218.494736842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 108914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 109546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 110493,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 110809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 111441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117278.633971292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117505.633971292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117733.633971292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117960.633971292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 340.909090909078,
+ "time": 118187.724880383,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 454,
+ "time": 118699.088516747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 120460.45215311,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 795,
+ "time": 120744.543062201,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 340,
+ "time": 121596.815789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 122108.179425838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 122352.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 681,
+ "time": 122807.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 124625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 124852,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125079,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125307,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125534,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 113,
+ "time": 125761,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 454,
+ "time": 125988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127789.997607656,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 127807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 795,
+ "time": 128034,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 738.636363636364,
+ "time": 128073.772727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 340.909090909091,
+ "time": 128944.984848485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340.909090909091,
+ "time": 128944.984848485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129380.906698565,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 129397,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129608.179425838,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 129625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 681.818181818182,
+ "time": 130062.724880383,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 681,
+ "time": 130079,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 133920.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 134045.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 134045.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 134420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 134670.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 134670.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 134920.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 135170.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 135420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 135420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 135670.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 750,
+ "time": 136170.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 137920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 138045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 138420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 138670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 138920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 139170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 139420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 139670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 750,
+ "time": 140170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 141897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 142170.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 142420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 142670.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 142920.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 143170.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 143420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 143670.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 144647.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 144772.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 144897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 145272.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 145397.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 145920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 146170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 146420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 146670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 146920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 147170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 147420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 147670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 148670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 148920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 149295,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 149420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 149647.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 149772.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 149897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 150147.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150272.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 150397.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150647.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 150795.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 151022.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 151147.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 151272.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 151420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 151897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 152397.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 152897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 152897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 153147.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 153147.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 153670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 153803.3,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 153920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 154170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 154420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 154670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 154795,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 154920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 155170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 155295,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 155420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 155920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 156420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 156920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 157188.716666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 875,
+ "time": 157647.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 875,
+ "time": 158647.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 159647.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 159772.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 159897.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160022.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 160147.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160272.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 160397.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160522.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 160647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 160897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 161147.365789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 161420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 875,
+ "time": 161670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 875,
+ "time": 162670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 163688.716666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 163803.3,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 163928.3,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 164188.716666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 164303.3,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 164428.3,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 164667.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 164917.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 165167.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 165417.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 165920.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 166209.865789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 166459.865789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 166670.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 166920.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 167170.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 167420.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 167670.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 500,
+ "time": 167920.315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 169920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 170170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 170420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 170670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 170920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 171170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 171420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 171670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 500,
+ "time": 171920,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.2,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 2526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 3473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 3789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 4736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 5052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1105,
+ "time": 7578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 7578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 8526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1263.26315789474,
+ "time": 8842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 8842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 9789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 10105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 10263.1578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13105.2631578947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 13894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 14447.3684210526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 16421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 17052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 18947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 19578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 21473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 22105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 24552.6315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24868.4210526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 25263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 25815.7894736842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1105,
+ "time": 26447.3684210526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 29052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 29684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 30315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 30947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1105,
+ "time": 31578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 631,
+ "time": 32842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 34105.2631578947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 34421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 34736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35368.4210526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 118,
+ "time": 35683,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 590,
+ "time": 36313,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 631,
+ "time": 37258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38205,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38205,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 38526.3157894737,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 38837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 39152,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39468,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39468,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39784,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39784,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 118,
+ "time": 40099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40414,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 590,
+ "time": 40729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45217,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45217,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45721.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46074,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46074,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 428,
+ "time": 46359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 857,
+ "time": 46931,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 428,
+ "time": 50931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 857,
+ "time": 51502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 148,
+ "time": 53502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 53788,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 54074,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 54359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54931,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 55217,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 857,
+ "time": 55502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 857,
+ "time": 55502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56788,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56931,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 148,
+ "time": 58074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 58359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 58645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 58931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 59788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 433.42857142857,
+ "time": 60074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 433.42857142857,
+ "time": 60074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62578.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63150.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63578.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63721.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64150.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 285,
+ "time": 64293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 285,
+ "time": 64864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 285,
+ "time": 64864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 65436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 66293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 433.571428571424,
+ "time": 68931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69507.4285714286,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 70931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1000,
+ "time": 71502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 1000,
+ "time": 72578.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73722.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73865.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74008.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74151.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74436.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74579.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74722.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74865.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75150.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75721.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 1000,
+ "time": 76074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 857.142857142873,
+ "time": 77197.9047619048,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80055.0476190476,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80340.7619047619,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 82007.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 82639.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83270.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 83586.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473.684210526316,
+ "time": 84297.1263157895,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 84928.7052631579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 85862,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 86493,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 86809,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 87125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 87441,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 87756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 88072,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 184.210526315783,
+ "time": 88718.1789473684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 89019,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 89335,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157.894736842105,
+ "time": 89665.5473684211,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157.894736842105,
+ "time": 89981.3368421053,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 90283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 90598,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90928.7052631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157.894736842105,
+ "time": 91086.6,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 315,
+ "time": 91481.3368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 92177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92507.652631579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157.894736842105,
+ "time": 92797.1263157895,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 315,
+ "time": 93125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 94072,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94481.3368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 94704,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 95639.2315789474,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96112.9157894737,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 96270.8105263158,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96586.6,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97165.5473684211,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97323.4421052632,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 97481.3368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 97862,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 98428.7052631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 98744.4947368421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99612.9157894737,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 99756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473.684210526316,
+ "time": 100086.6,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 100704,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 101019,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 101270.810526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315.789473684211,
+ "time": 102139.231578947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102598,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 500.000000000012,
+ "time": 103533.968421053,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104323.442105263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104507.652631579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105139.231578947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105455.021052632,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 105691.863157895,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 106323.442105263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106955.021052632,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 107270.810526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 107586.6,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107902.389473684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 108218.178947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473.684210526316,
+ "time": 108902.389473684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 109546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110191.863157895,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157.894736842105,
+ "time": 110507.652631579,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157.894736842105,
+ "time": 110823.442105263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111139.231578947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 111441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117278.318181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117505.318181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 117732.863636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 117960.136363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 340.909090909078,
+ "time": 118187.409090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 454,
+ "time": 118698.772727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 120460.136363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 795,
+ "time": 120744.227272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 121615.439393939,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 122107.863636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 122352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 681,
+ "time": 122807,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 124625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 124852,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 125081.348484848,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 125308.621212121,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 125534,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 113,
+ "time": 125761,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 454,
+ "time": 125988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127789.681818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 127807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 795,
+ "time": 128034,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 738.636363636364,
+ "time": 128073.772727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 128944.984848485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 340.909090909091,
+ "time": 128944.984848485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 129397,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129399.53030303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 129607.863636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 129625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 681.818181818182,
+ "time": 130062.409090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 681,
+ "time": 130079,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 133920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 134045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 134045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 134420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 134670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 134670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 134920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 135170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 135420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 135420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 135670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 750,
+ "time": 136170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 137920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 138045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 138045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 138420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 138670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 138670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 138920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 139170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 139420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 139420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 139647.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 750,
+ "time": 140147.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 141897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 142170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 142420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 142670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 142920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 143170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 143420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 143670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 144647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 144772.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 144897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 145272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 145397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 145897.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 146147.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 146397.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 146647.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 146897.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 147147.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 147397.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 147647.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 148688.716666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 148792.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 148917.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 149295,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 149420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 149647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 149772.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 149897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 150147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 150397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 150795,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 151022.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 151147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 151272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 151420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 151897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 152397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 152897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 152897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 153147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 153670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 153795,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 153920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 154170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 154295,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 154420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 154670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 154795,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 154920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 155045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 155170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 155295,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 155420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 155920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 156420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 156917.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 156917.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 157167.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 875,
+ "time": 157647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 875,
+ "time": 158647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 159647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 159772.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 159897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160022.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 160147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 160397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160522.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 160647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 160897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 161147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 161397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 875,
+ "time": 161670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 875,
+ "time": 162670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 163670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 163795,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 163920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 164045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 164170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 164295,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 164420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 164545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 164667.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 164917.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 165167.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 165417.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 165920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 166209.55,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 166459.55,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 166670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 166920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 167170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 167420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 167670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 500,
+ "time": 167920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 169920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 170170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 170420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 170670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 170920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 171170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 171420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 171670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 500,
+ "time": 171920,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.4,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 2526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 3473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 3789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 4736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 5052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 7578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 1105,
+ "time": 7578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 789,
+ "time": 8842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1263.26315789474,
+ "time": 8842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 10105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1105,
+ "time": 10263.1578947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13105.2631578947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 13894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 14447.3684210526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 16421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 17052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 18947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 315,
+ "time": 19578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 21473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 22105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 24552.6315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24868.4210526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 25263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 25815.7894736842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1105,
+ "time": 26447.3684210526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 29052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 30315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 30947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1105,
+ "time": 31578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 631,
+ "time": 32842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 34105.2631578947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 34421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 34736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35368.4210526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 118,
+ "time": 35683,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 590,
+ "time": 36313,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 472,
+ "time": 37258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38205,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38521,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39152,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39468,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39789.4736842105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40414,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 590,
+ "time": 40729,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45217,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45217,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45721.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46074,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46074,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 428,
+ "time": 46359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 857,
+ "time": 46931,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49078.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 428,
+ "time": 50931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 857,
+ "time": 51502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 148,
+ "time": 53502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 53788,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 54074,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 148,
+ "time": 54359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54931,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 148,
+ "time": 55217,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 857,
+ "time": 55502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 857,
+ "time": 55502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56645,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56788,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56931,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 857,
+ "time": 60074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61936,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62578.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63150.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63578.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63721.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64150.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 285,
+ "time": 64293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 285,
+ "time": 64864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 285,
+ "time": 64864.5714285714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 65436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66007.4285714286,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 66293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68078.8571428571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68650.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 68793.1428571429,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 285,
+ "time": 69502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 70074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 285,
+ "time": 70931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1000,
+ "time": 71502,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 1000,
+ "time": 72578.8571428571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73722.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73865.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74008.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74151.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74293.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74436.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74579.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74722.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74865.1428571429,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75150.2857142857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75436,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75721.7142857143,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 1000,
+ "time": 76074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1000,
+ "time": 77217,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78650.2857142857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78931,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79221.7142857143,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79502,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79788,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80074,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 82007.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 82639.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83270.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 83586.2315789474,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 84283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 84914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 473,
+ "time": 85862,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 86493,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 86809,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 87125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 87441,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 87756,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 88072,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88704,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89019,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89335,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 89651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89967,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 90283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 90598,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90928.7052631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157.894736842105,
+ "time": 91086.6,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 315,
+ "time": 91481.3368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 92177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92493,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 315,
+ "time": 93125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 94072,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94481.3368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 94704,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 95651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96598,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97165.5473684211,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97323.4421052632,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 97481.3368421053,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 97862,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 98428.7052631579,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 98744.4947368421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99756,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 100072,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100704,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 315,
+ "time": 101019,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 101270.810526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101967,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 315.789473684211,
+ "time": 102139.231578947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102598,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 473,
+ "time": 103546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104493,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 105691.863157895,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 106323.442105263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106955.021052632,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 107270.810526316,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 107586.6,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107902.389473684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 108218.178947368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 473,
+ "time": 108914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 109546,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110177,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110493,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 473,
+ "time": 111441,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117278.318181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117505.318181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117733.318181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 117960.318181818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 340.909090909078,
+ "time": 118187.409090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 454,
+ "time": 118698.772727273,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 120460.136363636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 795,
+ "time": 120744.227272727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 340,
+ "time": 121596.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 122107.863636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 122352,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 681,
+ "time": 122807,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 124625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 124852,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125079,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125307,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 125516.954545455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 125744.227272727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 454,
+ "time": 125988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127789.681818182,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 127807,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 795,
+ "time": 128034,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 340.909090909091,
+ "time": 128944.984848485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 321.969696969701,
+ "time": 128944.984848485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129380.590909091,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 129397,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129607.863636364,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 340,
+ "time": 129625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 681.818181818182,
+ "time": 130062.409090909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 681,
+ "time": 130079,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 133920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 134045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 134045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 134420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 134670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 134670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 134920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 135170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 135420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 135420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 135670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 750,
+ "time": 136170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 137920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 138084.55,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 138420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 138670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 138920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 139170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 139420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 139670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 750,
+ "time": 140170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 141897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 142170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 142420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 142670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 142920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 143170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 143420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 143670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 144647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 144772.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 144897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 145272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 145397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 145920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 146170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 146420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 146670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 146920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 147170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 147420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 500,
+ "time": 147670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 148670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 148920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 149420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 149647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 149772.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 149897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 150147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 150397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 150795,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 150897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 151022.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 151147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 151272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 250,
+ "time": 151420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 151897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 152397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 152897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 152897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 153147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 153147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 153670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 153920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 154170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 154420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 154670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 155272.05,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 250,
+ "time": 155420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 155920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 156420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 156920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 157170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 875,
+ "time": 157647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 875,
+ "time": 158647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 159647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 159772.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 159897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160022.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 160147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160272.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 160397.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 160522.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 160647.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 160897.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 161147.05,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 161420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 875,
+ "time": 161670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 875,
+ "time": 162670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 163688.716666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 163813.716666667,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 164167.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 164292.883333333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 164670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 164920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 165170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 165420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 165920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 166209.55,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 166459.55,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 125,
+ "time": 166670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 125,
+ "time": 166920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 167170,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 167420,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 167670,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 500,
+ "time": 167920,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 169920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 170170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 170420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 170920,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 171170,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 171420,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 171670,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 500,
+ "time": 171920,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/monster/events.json b/assets/gameplay/songs/monster/events.json
new file mode 100644
index 0000000..3dcb85d
--- /dev/null
+++ b/assets/gameplay/songs/monster/events.json
@@ -0,0 +1,411 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 2526,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 7578,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 13263,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 18315,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 23368,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28421,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 32842,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 37258,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 44359,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48931,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 53502,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 58074,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 62359,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 66931,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 71502,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76074,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 82072,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 84283,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86809,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 92177,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 97230,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 99441,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 101967,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 109546,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 117352,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 124625,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 133920,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 137920,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 141920,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 145920,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 149670,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 153670,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 157670,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 161670,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 165920,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 169920,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/monster/metadata.json b/assets/gameplay/songs/monster/metadata.json
new file mode 100644
index 0000000..ba59cdf
--- /dev/null
+++ b/assets/gameplay/songs/monster/metadata.json
@@ -0,0 +1,132 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 95
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 41770,
+ "bpm": 95
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 44180,
+ "bpm": 105
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 80710,
+ "bpm": 105
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 81860,
+ "bpm": 110
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 81861,
+ "bpm": 95
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 117230,
+ "bpm": 132
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 131770,
+ "bpm": 132
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 133310,
+ "bpm": 107
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 133311,
+ "bpm": 132
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 133770,
+ "bpm": 120
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 42975,
+ "bpm": 100
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 81285,
+ "bpm": 107.5
+ },
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 132540,
+ "bpm": 119.5
+ }
+ ],
+ "name": "Monster",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "monster",
+ "player": "bf"
+ },
+ "icon": "monster",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "spookyMansion",
+ "credits": {
+ "composer": "BassetFilms",
+ "charter": "ChaoticGamerCG + Spazkid"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/philly-nice/Inst.ogg b/assets/gameplay/songs/philly-nice/Inst.ogg
new file mode 100644
index 0000000..a8eed8f
Binary files /dev/null and b/assets/gameplay/songs/philly-nice/Inst.ogg differ
diff --git a/assets/gameplay/songs/philly-nice/Voices-Opponent.ogg b/assets/gameplay/songs/philly-nice/Voices-Opponent.ogg
new file mode 100644
index 0000000..a8a6ee3
Binary files /dev/null and b/assets/gameplay/songs/philly-nice/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/philly-nice/Voices-Player.ogg b/assets/gameplay/songs/philly-nice/Voices-Player.ogg
new file mode 100644
index 0000000..b73f348
Binary files /dev/null and b/assets/gameplay/songs/philly-nice/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/philly-nice/chart.json b/assets/gameplay/songs/philly-nice/chart.json
new file mode 100644
index 0000000..97bc100
--- /dev/null
+++ b/assets/gameplay/songs/philly-nice/chart.json
@@ -0,0 +1,5713 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 2914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 3428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 3771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 5142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 6171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 6514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 8914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 9257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 10285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 10628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 11657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 19542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 47314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90514,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.3,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 2914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 3428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 3771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 5142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 6171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 6514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 8914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 9257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 10285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 10628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 11657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 19371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 47314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90514,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 2914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 3428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 3771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 4800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 5142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 6171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 6514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6857,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7885,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 8914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 9257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 10285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 10628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 257,
+ "time": 11657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 171,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17828,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18171,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18514,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 19542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28114,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29142,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29485,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34628,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39085,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40457,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44571,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45942,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46285,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 47314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51428,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51771,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56914,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57257,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61028,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62742,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66514,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67542,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67885,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68228,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69257,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70628,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73371,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73714,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74742,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76114,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77485,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78857,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79542,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80228,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80571,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80914,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81942,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82285,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83657,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84342,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85714,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87085,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87428,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87771,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88457,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89142,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89828,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90171,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90342,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90514,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/philly-nice/events.json b/assets/gameplay/songs/philly-nice/events.json
new file mode 100644
index 0000000..9e535b1
--- /dev/null
+++ b/assets/gameplay/songs/philly-nice/events.json
@@ -0,0 +1,191 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 2914,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 14057,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19542,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24685,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 30171,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 35657,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 41142,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46628,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52114,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 63085,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 68571,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 74057,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 79542,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 85028,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/philly-nice/metadata.json b/assets/gameplay/songs/philly-nice/metadata.json
new file mode 100644
index 0000000..077f84d
--- /dev/null
+++ b/assets/gameplay/songs/philly-nice/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 175
+ }
+ ],
+ "name": "Philly Nice",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "pico",
+ "player": "bf"
+ },
+ "icon": "pico",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "phillyTrain",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/pico/Inst-Opponent.ogg b/assets/gameplay/songs/pico/Inst-Opponent.ogg
new file mode 100644
index 0000000..8c09c74
Binary files /dev/null and b/assets/gameplay/songs/pico/Inst-Opponent.ogg differ
diff --git a/assets/gameplay/songs/pico/Inst.ogg b/assets/gameplay/songs/pico/Inst.ogg
new file mode 100644
index 0000000..307b58c
Binary files /dev/null and b/assets/gameplay/songs/pico/Inst.ogg differ
diff --git a/assets/gameplay/songs/pico/Voices-Player.ogg b/assets/gameplay/songs/pico/Voices-Player.ogg
new file mode 100644
index 0000000..fd90507
Binary files /dev/null and b/assets/gameplay/songs/pico/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/pico/chart.json b/assets/gameplay/songs/pico/chart.json
new file mode 100644
index 0000000..d2fd17e
--- /dev/null
+++ b/assets/gameplay/songs/pico/chart.json
@@ -0,0 +1,4576 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 3799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 31199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 41200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 54399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55499,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 56799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 57599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60299,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 72800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 76400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.4,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 3799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 13599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 31199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 41200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 54399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55499,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 56799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 57599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60299,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 72800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 76400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.6,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 2,
+ "time": 3799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 31199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 40800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 41200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 54399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 56799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 57599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59699,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 72800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 76400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.2,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/pico/events.json b/assets/gameplay/songs/pico/events.json
new file mode 100644
index 0000000..2dcddbe
--- /dev/null
+++ b/assets/gameplay/songs/pico/events.json
@@ -0,0 +1,169 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 3799,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16199,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 22600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28999,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 35400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 41800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 54399,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 55999,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57599,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60999,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 73800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/pico/metadata.json b/assets/gameplay/songs/pico/metadata.json
new file mode 100644
index 0000000..aaf7c97
--- /dev/null
+++ b/assets/gameplay/songs/pico/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 150
+ }
+ ],
+ "name": "Pico",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "pico",
+ "player": "bf"
+ },
+ "icon": "pico",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "phillyTrain",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/roses/Inst.ogg b/assets/gameplay/songs/roses/Inst.ogg
new file mode 100644
index 0000000..c722fa6
Binary files /dev/null and b/assets/gameplay/songs/roses/Inst.ogg differ
diff --git a/assets/gameplay/songs/roses/Voices-Opponent.ogg b/assets/gameplay/songs/roses/Voices-Opponent.ogg
new file mode 100644
index 0000000..9781d6f
Binary files /dev/null and b/assets/gameplay/songs/roses/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/roses/Voices-Player.ogg b/assets/gameplay/songs/roses/Voices-Player.ogg
new file mode 100644
index 0000000..0f2d9e1
Binary files /dev/null and b/assets/gameplay/songs/roses/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/roses/chart.json b/assets/gameplay/songs/roses/chart.json
new file mode 100644
index 0000000..28e8b4d
--- /dev/null
+++ b/assets/gameplay/songs/roses/chart.json
@@ -0,0 +1,6423 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 1000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 5000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 5875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 7000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 8000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 8875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 9875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 10875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 12875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 13875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 14875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 19250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 49500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 53500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 72875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 74875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 76875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 77875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 78875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87750,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.3,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 1000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 4750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 5000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 5875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 7000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 8000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 8875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 9875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 10875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 12875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 13875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 14750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 14875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 19250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 49500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 51500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 53500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 375,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 72875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 74875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 76875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 77875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 78875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87875,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.5,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 1000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 5000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 5375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 5875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 7000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 8000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 8875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 9875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 10250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 10875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 12875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 13500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 13875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 14500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 14875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 18500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 19250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 125,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 49500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 375,
+ "time": 53500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 67000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 250,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 72875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 74875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 125,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 76875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 77875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 78875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87500,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.2,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/roses/events.json b/assets/gameplay/songs/roses/events.json
new file mode 100644
index 0000000..f34d928
--- /dev/null
+++ b/assets/gameplay/songs/roses/events.json
@@ -0,0 +1,257 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 4500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 12000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 20500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 32000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 36000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 44000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 56000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 68500,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 84000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/roses/metadata.json b/assets/gameplay/songs/roses/metadata.json
new file mode 100644
index 0000000..59b9e7a
--- /dev/null
+++ b/assets/gameplay/songs/roses/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 120
+ }
+ ],
+ "name": "Roses",
+ "characters": {
+ "spectator": "gf-pixel",
+ "opponent": "senpai-angry",
+ "player": "bf-pixel"
+ },
+ "icon": "senpai",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "school",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/satin-panties/Inst.ogg b/assets/gameplay/songs/satin-panties/Inst.ogg
new file mode 100644
index 0000000..1bf06cb
Binary files /dev/null and b/assets/gameplay/songs/satin-panties/Inst.ogg differ
diff --git a/assets/gameplay/songs/satin-panties/Voices-Opponent.ogg b/assets/gameplay/songs/satin-panties/Voices-Opponent.ogg
new file mode 100644
index 0000000..bfa9941
Binary files /dev/null and b/assets/gameplay/songs/satin-panties/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/satin-panties/Voices-Player.ogg b/assets/gameplay/songs/satin-panties/Voices-Player.ogg
new file mode 100644
index 0000000..b9136d7
Binary files /dev/null and b/assets/gameplay/songs/satin-panties/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/satin-panties/chart.json b/assets/gameplay/songs/satin-panties/chart.json
new file mode 100644
index 0000000..0a4f28d
--- /dev/null
+++ b/assets/gameplay/songs/satin-panties/chart.json
@@ -0,0 +1,7706 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5318,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 8727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 13090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 16363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 17454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 20727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 21818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 21818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23318,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 25090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 26181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 26181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 26727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 26727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 27818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 27818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 28363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 28909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 29454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 29454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 30272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 545,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33136,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 33272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 37636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39136,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 46363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 52363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 56727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 58909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 61090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 61636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 61636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 62727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 62727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 63272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 63818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 63818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 64363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 545,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 68181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 69818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 70363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 71454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 72545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 72545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 74181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 74727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 75272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 76909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 76909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1090,
+ "time": 82909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 87272,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.6,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 4227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5318,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 8318,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 8727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 13090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 16363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 17454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 20727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 21818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 21818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23318,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 25090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 26181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 26181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 26727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 26727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 27818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 27818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 28363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 28909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 29454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 29454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 30272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 545,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32318,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33136,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 33272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 37636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39136,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 43636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 46363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 52363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 56727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 58909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 61090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 61636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 61636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 62727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 62727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 63272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 63818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 63818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 64363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 545,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67227,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68045,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 68181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 69818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 70363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 71454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 72545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 72545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 74181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 74727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75136,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 75272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 76909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 76909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77590,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78136,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78409,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 78545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81954,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1090,
+ "time": 82909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84136,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86318,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86590,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 87272,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.8,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 954,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 2727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 4636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5318,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 6272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 6818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 8727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 9000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9681,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 11181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 13090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 13363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15681,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 16363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16772,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 17454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 272,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 272,
+ "time": 20727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21136,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 21818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 21818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 25090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 26181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 26181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 26727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 26727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 27818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 27818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 28363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 28909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 29454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 29454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 30272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 545,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 33272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 37636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47863,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 52363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 56727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 58909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 136,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 61090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 61636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 61636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 62727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 409,
+ "time": 62727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 63272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 63818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 63818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 64363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 65181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 545,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 68181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 69818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 70363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 71454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 136,
+ "time": 72545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 72545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 74181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 74727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 75272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 409,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 409,
+ "time": 76909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 409,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78409,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82772,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 1090,
+ "time": 82909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83863,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 545,
+ "time": 87272,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.3,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/satin-panties/events.json b/assets/gameplay/songs/satin-panties/events.json
new file mode 100644
index 0000000..e6b2442
--- /dev/null
+++ b/assets/gameplay/songs/satin-panties/events.json
@@ -0,0 +1,246 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 2181,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 4636,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8727,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 13090,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 17454,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 21818,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 26181,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 30545,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 34909,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 39272,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43636,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48272,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52363,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 56727,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 61090,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65454,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 69818,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 74181,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 78545,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 82909,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 85363,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/satin-panties/metadata.json b/assets/gameplay/songs/satin-panties/metadata.json
new file mode 100644
index 0000000..0b0f8dd
--- /dev/null
+++ b/assets/gameplay/songs/satin-panties/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 110
+ }
+ ],
+ "name": "Satin Panties",
+ "characters": {
+ "spectator": "gf-car",
+ "opponent": "mom-car",
+ "player": "bf-car"
+ },
+ "icon": "mom",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "limoRide",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/senpai/Inst.ogg b/assets/gameplay/songs/senpai/Inst.ogg
new file mode 100644
index 0000000..6b823b2
Binary files /dev/null and b/assets/gameplay/songs/senpai/Inst.ogg differ
diff --git a/assets/gameplay/songs/senpai/Voices-Opponent.ogg b/assets/gameplay/songs/senpai/Voices-Opponent.ogg
new file mode 100644
index 0000000..27a9a99
Binary files /dev/null and b/assets/gameplay/songs/senpai/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/senpai/Voices-Player.ogg b/assets/gameplay/songs/senpai/Voices-Player.ogg
new file mode 100644
index 0000000..1a35abb
Binary files /dev/null and b/assets/gameplay/songs/senpai/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/senpai/chart.json b/assets/gameplay/songs/senpai/chart.json
new file mode 100644
index 0000000..5193ffc
--- /dev/null
+++ b/assets/gameplay/songs/senpai/chart.json
@@ -0,0 +1,6400 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 1250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 1666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 2291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 3958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 4166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 4583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 5000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 5416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 5625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 8333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 8333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 8750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 8958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 8958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 208,
+ "time": 13750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 520,
+ "time": 14166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 14791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 16250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 937,
+ "time": 17291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 520,
+ "time": 18958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 19583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 208,
+ "time": 20416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 520,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 21458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22395,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 22916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 23333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 937,
+ "time": 23958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 520,
+ "time": 25625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 26250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 729,
+ "time": 26666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 729,
+ "time": 27500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 208,
+ "time": 28333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 729,
+ "time": 28333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 28750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 729,
+ "time": 29166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 29583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 729,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 30625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 729,
+ "time": 30833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 31458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 729,
+ "time": 31666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 729,
+ "time": 32500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 32916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 208,
+ "time": 35000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 35416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 36250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 37291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 38125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 39583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 416,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 40833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 41458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 42291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 42708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 43333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 43958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 46666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47395,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 47500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 48125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 48958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 49375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 50625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 53333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 54166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 54583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 55000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 55625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 57500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 57916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 58333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 58958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 60833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 60833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 61666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 62291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 62291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 64583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 64583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68541,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70208,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73541,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78541,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 80833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 81458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 82291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 82708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 83333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 83958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 86666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87395,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 87500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 88125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 88958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 89375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 90625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 93333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 833,
+ "time": 93333,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.3,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 1250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 1666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 2291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 3958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 4166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 4583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 5000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 5416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 5625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 7291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 8333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 8333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 8958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 8958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 11875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 208,
+ "time": 13750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 520,
+ "time": 14166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 14791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 16250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 937,
+ "time": 17291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 520,
+ "time": 18958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 19583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 208,
+ "time": 20416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 520,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 21458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22395,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 22916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 23333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 937,
+ "time": 23958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 520,
+ "time": 25625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 26250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 729,
+ "time": 26666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26770,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26979,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 729,
+ "time": 27500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 729,
+ "time": 28333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 208,
+ "time": 28333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 28750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 729,
+ "time": 29166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 29583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 729,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 30625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 729,
+ "time": 30833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 31458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 729,
+ "time": 31666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 625,
+ "time": 32500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 32916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33541,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33645,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 208,
+ "time": 35000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 35416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 36250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 37291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 38125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 39583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 416,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 40833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 41458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 42291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 42708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 43333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 43958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 46666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47395,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 47500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 48125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 48958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 49375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 50625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51979,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 53333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 54166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 54583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 55000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 55625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 57500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 57916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 58333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 58958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 60833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 60833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 61666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 62291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 62291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 64583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 64583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65208,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68541,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70208,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73541,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74895,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77395,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78229,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78541,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80520,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 80729,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 80833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 81458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 82291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 82708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 83333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 83958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 86666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87395,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 87500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 88125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 88958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 89375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 90625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 91875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91979,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 93333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 833,
+ "time": 93333,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.5,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 1250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 1666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 2291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 3750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 4166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 4583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 5000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 5416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 5625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 7500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 8333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 8333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 8958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 8958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 10833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 11250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 11666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 12083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 13125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 208,
+ "time": 13750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 520,
+ "time": 14166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 14791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 16250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 16666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 937,
+ "time": 17291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 18333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 520,
+ "time": 18958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 19583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 20416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 520,
+ "time": 20833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 21458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 22916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 23333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 937,
+ "time": 23958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 416,
+ "time": 25000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 520,
+ "time": 25625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 26250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 625,
+ "time": 26666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 27500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 208,
+ "time": 28333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 28333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 28750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 29166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 29583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 625,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 30625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 625,
+ "time": 30833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 31458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 31666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 32083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 625,
+ "time": 32500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 32916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 208,
+ "time": 35000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 35416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 36250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 37291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 38125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 39583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 416,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 40833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 41458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 42291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 42708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 43333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 43958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 46666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 47500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 48125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 48958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 49375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 50625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 53333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 54166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 54583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 416,
+ "time": 55000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 55625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 57500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 57916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 58333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 58958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 60833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 60833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 61666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 61666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 312,
+ "time": 62291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 62291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 64583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 208,
+ "time": 64583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66458,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66666,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67083,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67916,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70833,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74166,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74583,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74791,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77291,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78333,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79166,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79583,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 80000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 80833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 81458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 82291,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 82708,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 83333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 83958,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85416,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85833,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86041,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86458,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 86666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 87500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 625,
+ "time": 88125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 312,
+ "time": 88958,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 89375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89791,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 312,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 312,
+ "time": 90625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91041,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91666,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92083,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92916,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 833,
+ "time": 93333,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 833,
+ "time": 93333,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.1,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/senpai/events.json b/assets/gameplay/songs/senpai/events.json
new file mode 100644
index 0000000..3b5bd36
--- /dev/null
+++ b/assets/gameplay/songs/senpai/events.json
@@ -0,0 +1,290 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 3333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 6666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 11666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 13750,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 20000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 26666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 30000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 31666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 53333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 56666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 61666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 63333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 66666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 70000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 73333,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86666,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/senpai/metadata.json b/assets/gameplay/songs/senpai/metadata.json
new file mode 100644
index 0000000..3307fbd
--- /dev/null
+++ b/assets/gameplay/songs/senpai/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 144
+ }
+ ],
+ "name": "Senpai",
+ "characters": {
+ "spectator": "gf-pixel",
+ "opponent": "senpai",
+ "player": "bf-pixel"
+ },
+ "icon": "senpai",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "school",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/south/Inst.ogg b/assets/gameplay/songs/south/Inst.ogg
new file mode 100644
index 0000000..387f5a8
Binary files /dev/null and b/assets/gameplay/songs/south/Inst.ogg differ
diff --git a/assets/gameplay/songs/south/Voices-Opponent.ogg b/assets/gameplay/songs/south/Voices-Opponent.ogg
new file mode 100644
index 0000000..1ea1a07
Binary files /dev/null and b/assets/gameplay/songs/south/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/south/Voices-Player.ogg b/assets/gameplay/songs/south/Voices-Player.ogg
new file mode 100644
index 0000000..ba3fb68
Binary files /dev/null and b/assets/gameplay/songs/south/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/south/chart.json b/assets/gameplay/songs/south/chart.json
new file mode 100644
index 0000000..91b0d47
--- /dev/null
+++ b/assets/gameplay/songs/south/chart.json
@@ -0,0 +1,5741 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 11636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 47636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 59636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 60727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 66545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.5,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 11636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 47636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 59636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 60727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 272,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 181,
+ "time": 66545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 66909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.2,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 11636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 12727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 14181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 20000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 34727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 47636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 60727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 61818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 65090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 181,
+ "time": 66545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71636,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72363,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72727,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73818,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74181,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74545,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74909,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75090,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75272,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75454,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77454,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77818,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78181,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78545,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79272,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79636,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80363,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80727,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80909,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81090,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81272,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.1,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/south/events.json b/assets/gameplay/songs/south/events.json
new file mode 100644
index 0000000..14572bc
--- /dev/null
+++ b/assets/gameplay/songs/south/events.json
@@ -0,0 +1,147 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 11636,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 17454,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 23272,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 29090,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 34909,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40727,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46545,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52363,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 58181,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 69818,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 75636,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/south/metadata.json b/assets/gameplay/songs/south/metadata.json
new file mode 100644
index 0000000..1c2e12d
--- /dev/null
+++ b/assets/gameplay/songs/south/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 165
+ }
+ ],
+ "name": "South",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "spooky",
+ "player": "bf"
+ },
+ "icon": "spooky",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "spookyMansion",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/spookeez/Inst.ogg b/assets/gameplay/songs/spookeez/Inst.ogg
new file mode 100644
index 0000000..86bb130
Binary files /dev/null and b/assets/gameplay/songs/spookeez/Inst.ogg differ
diff --git a/assets/gameplay/songs/spookeez/Voices-Opponent.ogg b/assets/gameplay/songs/spookeez/Voices-Opponent.ogg
new file mode 100644
index 0000000..f77057a
Binary files /dev/null and b/assets/gameplay/songs/spookeez/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/spookeez/Voices-Player.ogg b/assets/gameplay/songs/spookeez/Voices-Player.ogg
new file mode 100644
index 0000000..f38c5f7
Binary files /dev/null and b/assets/gameplay/songs/spookeez/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/spookeez/chart.json b/assets/gameplay/songs/spookeez/chart.json
new file mode 100644
index 0000000..add0121
--- /dev/null
+++ b/assets/gameplay/songs/spookeez/chart.json
@@ -0,0 +1,6244 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 6400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 19400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26699,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 57599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 57999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 58399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 58799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 59199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 59399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 59599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 59999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 60399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 63999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 64399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 65600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 65800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 68800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 69200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 75200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 76400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 81600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 82400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 82800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 88400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 89200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.6,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 6400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 6599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13099,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14699,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 16199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 17000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 19500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26699,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30699,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 47500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53099,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54699,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 57599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 57999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 58399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 58799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 59199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 59399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 59599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 59999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 60399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 63999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 64399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 65199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 65600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 65800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 66800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 68800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 69200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 75200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 76400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 81600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 82400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 82800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 88400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 89200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.4,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 6400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 7199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 7599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 7999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 8400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 8800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 9400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 11600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 12400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 12800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 15400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 18800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 19400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 19600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 20800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 200,
+ "time": 24800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26699,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 250,
+ "time": 28000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 38800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 47200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52299,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52599,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 53600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54399,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55199,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55499,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 700.999999999999,
+ "time": 57599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 700.999999999999,
+ "time": 58399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 59199,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 59599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 700.999999999999,
+ "time": 59999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61799,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63399,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63599,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 700.999999999999,
+ "time": 63999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 700.999999999999,
+ "time": 64799,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 65600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 700,
+ "time": 66400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 68800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 69200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 70000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 75200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 76400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 81600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 82000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 82400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 82800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 88400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 89200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 90200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 91800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 95000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.4,
+ "rating": 0
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/spookeez/events.json b/assets/gameplay/songs/spookeez/events.json
new file mode 100644
index 0000000..9743800
--- /dev/null
+++ b/assets/gameplay/songs/spookeez/events.json
@@ -0,0 +1,231 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 6400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 12800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 15600,
+ "args": {
+ "anim": "cheer",
+ "spr": "opponent",
+ "force": "cheer"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 18800,
+ "args": {
+ "anim": "cheer",
+ "spr": "player",
+ "force": "cheer"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 25600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 32000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 35200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 38400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 41600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 44800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 51200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 70400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 83200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 89600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/spookeez/metadata.json b/assets/gameplay/songs/spookeez/metadata.json
new file mode 100644
index 0000000..44c29d0
--- /dev/null
+++ b/assets/gameplay/songs/spookeez/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 150
+ }
+ ],
+ "name": "Spookeez",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "spooky",
+ "player": "bf"
+ },
+ "icon": "spooky",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "spookyMansion",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH + SpazKid"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/stress/Inst.ogg b/assets/gameplay/songs/stress/Inst.ogg
new file mode 100644
index 0000000..604bda2
Binary files /dev/null and b/assets/gameplay/songs/stress/Inst.ogg differ
diff --git a/assets/gameplay/songs/stress/Voices-Opponent.ogg b/assets/gameplay/songs/stress/Voices-Opponent.ogg
new file mode 100644
index 0000000..68bbb0b
Binary files /dev/null and b/assets/gameplay/songs/stress/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/stress/Voices-Player.ogg b/assets/gameplay/songs/stress/Voices-Player.ogg
new file mode 100644
index 0000000..ce0a8d7
Binary files /dev/null and b/assets/gameplay/songs/stress/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/stress/chart.json b/assets/gameplay/songs/stress/chart.json
new file mode 100644
index 0000000..26d0d67
--- /dev/null
+++ b/assets/gameplay/songs/stress/chart.json
@@ -0,0 +1,14890 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 168.539325842697,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4887,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5393.25842696629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5898.87640449438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6067.41573033708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6404.49438202247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6741.57303370786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6910.11235955056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7078.65168539326,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7247.19101123595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7415.73033707865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8089.88764044944,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8426.96629213483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8595.50561797753,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8764.04494382022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9101.12359550562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9438.20224719101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9606.74157303371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9775.2808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9943.8202247191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10112.3595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10280.8988764045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10449.4382022472,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10617.9775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 11460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 14831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 15168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 15505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 15842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 16179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 16853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 17191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18370,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18707.8651685393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18876.404494382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19719.1011235955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19887.6404494382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20224,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21235.9550561798,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21404.4943820225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21573,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23005,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 23595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 23932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25617,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25955.0561797753,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26123.595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 26966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 27640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 28314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28398,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 28988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252.808988764045,
+ "time": 30674.1573033708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31095.5056179775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31179.7752808989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31348.3146067416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31516.8539325843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31685.393258427,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31853.9325842697,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32022.4719101124,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32191.0112359551,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 674,
+ "time": 32359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33623.595505618,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33707.8651685393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34887.6404494382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34971.9101123595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35056.1797752809,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35561,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35898,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36067,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36151,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36235,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36404,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36573,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37668.5393258427,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37752.808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37921.3483146067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38089.8876404494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38595.5056179775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252.808988764045,
+ "time": 38764.0449438202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39101.1235955056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39606.7415730337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39775.2808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39943.8202247191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 252.80898876405,
+ "time": 40112.3595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40449.4382022472,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40617.9775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41292.1348314607,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41460.6741573034,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41544.9438202247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41629.2134831461,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42134,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42640.4494382022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42977.5280898876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44410.1123595506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44494.3820224719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46938,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49382.0224719101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252.808988764045,
+ "time": 49550.5617977528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49887,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50224,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50730.3370786517,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 273.876404494382,
+ "time": 50898.8764044944,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 252.808988764045,
+ "time": 51910.1123595506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252.808988764045,
+ "time": 52247.191011236,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52584.2696629213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52752.808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52921.3483146067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53089.8876404494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53258.4269662921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53426.9662921348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53595.5056179775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53764.0449438202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1011,
+ "time": 53932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 505,
+ "time": 55955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 674,
+ "time": 56629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 58651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 84,
+ "time": 58988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59325,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 59325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59831.4606741573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60337.0786516854,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60505.6179775281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 60674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 61348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62022,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62528.0898876404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62696.6292134831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63033.7078651685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63202.2471910112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63370.7865168539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63539.3258426966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63623.595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63707.8651685393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 64719,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 64719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 65056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 65393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 65393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 65730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 505,
+ "time": 66067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66067,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66404,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 505,
+ "time": 66741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 505,
+ "time": 67415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 68089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 68426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68511,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 68764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 69438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 70112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 70449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 70786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 71123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72134,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72640.4494382023,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73146,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73483.1460674157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73820.2247191011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74325,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1264,
+ "time": 75505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76095,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1264,
+ "time": 76853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76938,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 252,
+ "time": 77528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1264,
+ "time": 78202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78539.3258426966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79466,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1264,
+ "time": 79550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79634,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 84,
+ "time": 79803,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80561,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81741.5730337079,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81910.1123595506,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82078.6516853933,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 82921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84101.1235955056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84775.2808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84943.8202247191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85112.3595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85280.8988764045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85449.4382022472,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85617.9775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86376,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86713,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87724,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88061,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88146.0674157303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89073,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89410,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89915,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90589,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91095,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 168,
+ "time": 91348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92022.4719101124,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92696,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93370.7865168539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93539.3258426966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94550.5617977528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94719.1011235955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94887.6404494382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95224.7191011236,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95308.9887640449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 337,
+ "time": 96741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97668,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98174,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 98426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 99101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99859,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100365,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 101123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101376,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 101797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102556,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103061,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103146,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103820,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104073,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 104325,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 104662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105252,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107696.629213483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 107865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 107949,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108117,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 108202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 108370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 108539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 108876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 109044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 109213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 109297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 109382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109466,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 109550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 109719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 109887,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109887,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 109971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 110056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 110140,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 110224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 110561.797752809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110646.06741573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110730.337078652,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110898.876404494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111067.415730337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111235.95505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111404.494382022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111573.033707865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111741.573033708,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111910.112359551,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111994.382022472,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112078.651685393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112584.269662921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112668.539325843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112752.808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 168.539325842697,
+ "time": 112921.348314607,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 113258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 113932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114353,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114522,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 114606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 115280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115365,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115533,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 115955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 116292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116797.752808989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117050.561797753,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117134.831460674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118146.06741573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 118230.337078652,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 118314.606741573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118483.146067416,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 2.3,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 168.539325842697,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4887,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5561.79775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6404.49438202247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7078,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10617,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 11460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 14831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 252,
+ "time": 15168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 15505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 15842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 16179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 16853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18370,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18623,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19719,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19887,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19971,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20224,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21573,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 23005,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 23595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 23932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25617,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25702,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25955.0561797753,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 505,
+ "time": 26966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 505,
+ "time": 27640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 505,
+ "time": 28314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28398,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 505,
+ "time": 28988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 29831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31095,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 674,
+ "time": 32359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33539.3258426966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33623.595505618,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33707.8651685393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34887.6404494382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34971.9101123595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35056.1797752809,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35561,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35898,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36067,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36151,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36235,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36404,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36573,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37668.5393258427,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38932.5842696629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39016.8539325843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39101.1235955056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40280.8988764045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 40365.1685393258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40449.4382022472,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40617,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41544,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 41966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42134,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43061.797752809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44410.1123595506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44494.3820224719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46938,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48623.595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48876.404494382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49129,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49719,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49887.6404494382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50056.1797752809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50140.4494382022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50224.7191011236,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 50898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51151,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52078,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52331,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52415.7303370787,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 53426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 53764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 842,
+ "time": 53932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 505,
+ "time": 55955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 56629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 674,
+ "time": 56629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 58651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 84,
+ "time": 58988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 59325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 59325,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 59494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 60674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 61348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62022,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62696,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63370,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63623,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 64719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 64719,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65224,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 65393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 65393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 168,
+ "time": 65730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 421,
+ "time": 66067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66067,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66404,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 84,
+ "time": 66573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 421,
+ "time": 66741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 67247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 67415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 68089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 252,
+ "time": 68426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68511,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 68764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 69438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 70112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70617,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 70786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72134,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72556,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 72640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73146,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73820,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73904,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74325,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1264,
+ "time": 75505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76095,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1264,
+ "time": 76853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76938,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 252,
+ "time": 77528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1264,
+ "time": 78202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78539.3258426966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79466,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1264,
+ "time": 79550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79634,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 84,
+ "time": 79803,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80561,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81488.7640449438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82078,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82331,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 252,
+ "time": 82921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83848,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83932.5842696629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84185.393258427,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84269.6629213483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84438.202247191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84522,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84859,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85028,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 84,
+ "time": 85196,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85365,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 85449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85617.9775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86376,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86713,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87724,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88061,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88146.0674157303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89073,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89410,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89915,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90589,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91095,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 168,
+ "time": 91348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 91769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 91853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92106,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92191.0112359551,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 92696,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93117,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93370.7865168539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93455,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93539.3258426966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 93707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94466,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94719,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94803,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94887,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95056.1797752809,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95224,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95308,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95814,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95983,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96488,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 96573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96657,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 337,
+ "time": 96741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97668,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98174,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 98426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 99101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99859,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100365,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 101123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101376,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 101797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102556,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102556,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 102808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103061,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103061,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103146,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103483,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103567,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103820,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104073,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 104073,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 104325,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 104494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 104662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105252,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105252,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 105758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 105758,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106769,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 107191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 107359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107696,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 107865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 107949,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108117,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 108202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 108370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 108539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 108876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 109044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 109213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 109297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 109382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109466,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 109550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 109719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 109887,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109887,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 109971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 110056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 110140,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 110224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 110561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110646,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110814,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 111488,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111994,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112078,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112162,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112668,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 112752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112837,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 112921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 113089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 113258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 113932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114353,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114522,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 114606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 114606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 114775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 115280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115365,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115533,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115617.97752809,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 115955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 116460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117134,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117219,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 117303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 117977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 118061,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118146,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 118230,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 118314.606741573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118483,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.6,
+ "rating": 5
+ },
+ {
+ "chart": [
+ {
+ "direction": 1,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 168.539325842697,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 2359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 2865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4887,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 5224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5393.25842696629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5561.79775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6910.11235955056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7078,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 8089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8258.42696629213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9606.74157303371,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 11460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 14831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 14831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 15168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 15505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 15505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 15842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 16853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 17191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19044.9438202247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19213.4831460674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19550.5617977528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19887.6404494382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20224,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20393.2584269663,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20898.8764044944,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21573,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 21910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 22752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23005,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 23595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 23932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24943.8202247191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25617,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25786.5168539326,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 25955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 26966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 27640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 28314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28398,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 337,
+ "time": 28988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 29662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30337.0786516854,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31179.7752808989,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 674,
+ "time": 32359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33623.595505618,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33707.8651685393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34887.6404494382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34971.9101123595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35056.1797752809,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 35561,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 35898,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36067,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36151,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36235,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36404,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36573,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 36910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37668.5393258427,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38089.8876404494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38595.5056179775,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38764.0449438202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39775.2808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39943.8202247191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40112.3595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 40449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 40786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 41123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 41460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42134,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44410.1123595506,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44494.3820224719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44747,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 45505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 46516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 46685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46938,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 47696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 47865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49887,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50224,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51235.9550561798,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51404.4943820225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 51573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 51910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 52584.2696629213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52752.808988764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 52921.3483146067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1011,
+ "time": 53932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 54606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 55280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 55617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 505,
+ "time": 55955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 56460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 674,
+ "time": 56629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 56629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 56797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 56966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 57808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 57977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58230,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 252,
+ "time": 58651,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59325,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 59325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59662,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 60674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61348,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 168,
+ "time": 61348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62022,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62696,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63370,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64719,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 64719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 252,
+ "time": 65393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 505,
+ "time": 66067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66067,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66404,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 505,
+ "time": 66741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66741,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66910,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 505,
+ "time": 67415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 67921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 68089,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 68426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68511,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 68764,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 337,
+ "time": 69438,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70112,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70449,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70617.9775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70786,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71460,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72134,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72808,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 72977.5280898876,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 73146,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73483.1460674157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 73820.2247191011,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 74325.8426966292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 74494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 74831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 1264,
+ "time": 75505,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76095,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1264,
+ "time": 76853,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76938,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 252,
+ "time": 77528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 1264,
+ "time": 78202,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78455,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78539.3258426966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79129,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79466,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 1011,
+ "time": 79550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79634,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 79719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 84,
+ "time": 79803,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80561,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 80730,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 80898,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81404.4943820225,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82752,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 252,
+ "time": 82921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83595,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 84269,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 84943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 85280.8988764045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85617.9775280899,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 85786.5168539326,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 85955.0561797753,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86123.595505618,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86376,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 86713,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 86797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 87640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 87724,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 87977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88061,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88146.0674157303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 88651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 88988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89073,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 89410,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 89915,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 90589,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 90674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 90842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91095,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 168,
+ "time": 91348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 92022,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92359,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 92528.0898876405,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 92696,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 93033,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 93370,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93707,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 93876.404494382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 94044,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94382,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94719,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95224.7191011236,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 95393,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 95730,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96067,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96404,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 337,
+ "time": 96741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 97078,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97162,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97247,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 97584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97668,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97752,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97921,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98089,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98174,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 98426,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 98595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 98932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 99101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 99269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 99775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99859,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 99943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100365,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 100786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100870,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 101123,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 101123,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 101292,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101376,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 101460,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 101629,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 337,
+ "time": 101797,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 101797,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 101966,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102134,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102303,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102556,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102640,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 102808,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 102808.988764045,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 102977,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 102977.528089888,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103061,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103146,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103314,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103314.606741573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103483,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103483.146067416,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 103567,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 103651,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 103820,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 103820.224719101,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 103988,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 103988,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 104073,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 104157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 104157.303370787,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 104325,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 104494,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104662,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 104831,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 104831,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105168,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105168,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105252,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105337,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105505,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105505.617977528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 105674,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 105758,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 105842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106011,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106011.235955056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 106179,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106179,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106348,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106516,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 106516,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106685,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 106685,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106769,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106853,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106853.93258427,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107022,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107191,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 107191,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 107528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 107696,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 107865,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 107865,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 107949,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108033,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108117,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 108202,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 108370,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 108539,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 108539,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108707,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 108876,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 109044,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 109213,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109213,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 109297,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 109382,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 109466,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 109550,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 109719,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 109887,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109887,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 109971,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 110056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 110140,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 110224,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110393,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 110561,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110898.876404494,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111067.415730337,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111235,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111573,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 111741,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 111910,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112247,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 112584.269662921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 112921,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 589,
+ "time": 113258,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 113258,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113426,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 113595,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113764,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 589,
+ "time": 113932,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113932,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114101,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114269,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114353,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114438,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 114522,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 589,
+ "time": 114606,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 114606,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 114775,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115112,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 337,
+ "time": 115280,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 115280,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115365,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115449,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 115533,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115617,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 115786,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115955,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 589,
+ "time": 115955,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 116292,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 116629,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 116966,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117134.831460674,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117303,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 117640,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 117977,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 118314,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 118483,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 2.2,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/stress/events.json b/assets/gameplay/songs/stress/events.json
new file mode 100644
index 0000000..622851b
--- /dev/null
+++ b/assets/gameplay/songs/stress/events.json
@@ -0,0 +1,268 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 5393,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 11123,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 14831,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 21573,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24269,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 26966,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28314,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 31011,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 37752,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43146,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48539,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 53932,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 59325,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 62022,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67415,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 75505,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80898,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86292,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 91685,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 97078,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 102471,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 107865,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 113258,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/stress/metadata.json b/assets/gameplay/songs/stress/metadata.json
new file mode 100644
index 0000000..8c30de0
--- /dev/null
+++ b/assets/gameplay/songs/stress/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 178
+ }
+ ],
+ "name": "Stress",
+ "characters": {
+ "spectator": "pico-speaker",
+ "opponent": "tankman",
+ "player": "bf-holding-gf"
+ },
+ "icon": "tankman",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "tankmanBattlefield",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "MtH + SpazKid"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/test/Inst.ogg b/assets/gameplay/songs/test/Inst.ogg
new file mode 100644
index 0000000..f39e2b1
Binary files /dev/null and b/assets/gameplay/songs/test/Inst.ogg differ
diff --git a/assets/gameplay/songs/test/Voices.ogg b/assets/gameplay/songs/test/Voices.ogg
new file mode 100644
index 0000000..3c247e3
Binary files /dev/null and b/assets/gameplay/songs/test/Voices.ogg differ
diff --git a/assets/gameplay/songs/test/chart.json b/assets/gameplay/songs/test/chart.json
new file mode 100644
index 0000000..e65bc63
--- /dev/null
+++ b/assets/gameplay/songs/test/chart.json
@@ -0,0 +1,3041 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 12800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13199.999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13599.999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13999.999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14399.999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 14799.999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15199.999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15599.999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 15999.999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16199.999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 17000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 17800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 19600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 20000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 20400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 20800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 21200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 21600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 22000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 700,
+ "time": 22400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 700,
+ "time": 23200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 23600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 700,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 24400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 700,
+ "time": 24800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26399.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26399.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27199.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27199.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27599.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27599.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27999.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27999.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28199.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28199.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28399.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28399.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28799.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28799.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29599.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29599.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30399.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30399.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30799.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30799.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31199.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31199.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31399.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31399.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 31599.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31599.998,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31999.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32099.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 32199.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32399.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 32499.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 32599.998,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 33400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 33800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 34200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 34600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 35400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 35700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 35800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 36200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 36600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 37000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 37400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 37600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 100,
+ "time": 37800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 38200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 38800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 38900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 41800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 44800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45066.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45333.332,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45866.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46133.332,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46266.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 46400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 46800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 47200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 400,
+ "time": 47600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48266.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48533.332,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49066.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49333.332,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49466.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 100,
+ "time": 49600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 200,
+ "time": 50000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 400,
+ "time": 50800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 800,
+ "time": 51200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 800,
+ "time": 51200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52599.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 52799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 800,
+ "time": 52799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 700,
+ "time": 53599.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 499.999969,
+ "time": 53799.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 53999.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53999.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 53999.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54199.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 54399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 800,
+ "time": 54399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 800,
+ "time": 54399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 800,
+ "time": 54399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 800,
+ "time": 54399.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 800,
+ "time": 54399.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 800,
+ "time": 55999.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 55999.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57199.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 57199.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 800,
+ "time": 57599.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 800,
+ "time": 57599.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58999.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 59199.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 800,
+ "time": 59199.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 700,
+ "time": 59999.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 499.999969,
+ "time": 60199.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 60399.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60599.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 60799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 800,
+ "time": 60799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 800,
+ "time": 60799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 800,
+ "time": 60799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 800,
+ "time": 60799.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 800,
+ "time": 60799.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62199.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 800,
+ "time": 62399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 800,
+ "time": 62399.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63199.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63299.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63399.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63499.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63599.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63599.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63599.9961,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63649.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63699.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63749.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63799.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63849.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63899.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63949.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63999.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64199.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64399.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 499.999969,
+ "time": 64599.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65199.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 65399.9961,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66666.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 66933.33,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 67200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 449.999969,
+ "time": 67850,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 68400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 68600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 68700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 68800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 69600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 69800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 499.999969,
+ "time": 71000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 499.999969,
+ "time": 71000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 400,
+ "time": 71800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 400,
+ "time": 71800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 72600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73066.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73066.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73333.33,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73333.33,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 73600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 73700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 74200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 449.999969,
+ "time": 74250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 449.999969,
+ "time": 74250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 100,
+ "time": 74800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 100,
+ "time": 74800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 75400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 75800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 76200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 76200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 77400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 700,
+ "time": 77600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 78300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 700,
+ "time": 78400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 78800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 78900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 400,
+ "time": 79200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 79400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 79800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 79900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 700,
+ "time": 80800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 80800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 700,
+ "time": 81600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 400,
+ "time": 82400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 83200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 83900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84100,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84700,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84933.33,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85066.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85333.33,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85466.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85733.33,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85866.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86133.33,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 86266.6641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 600,
+ "time": 86400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87100,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 600,
+ "time": 87200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 87200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 600,
+ "time": 88000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88133.33,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88266.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88533.33,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88666.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 600,
+ "time": 88800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88933.33,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89066.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89333.33,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89466.6641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 3200,
+ "time": 89600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 90000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 90400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 90800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 91600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 91800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 92000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 92400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 3200,
+ "time": 92800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 93200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 93600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 94000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 94800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 95000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 95200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 95600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 2300,
+ "time": 96000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 96400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 96800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 97200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 98000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 98200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 700,
+ "time": 98400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 98400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 98800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 99200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 700,
+ "time": 99200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 100000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 300,
+ "time": 100000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 100400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 300,
+ "time": 100400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 100800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 700,
+ "time": 100800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 101200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 300,
+ "time": 101600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 700,
+ "time": 101600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 300,
+ "time": 102000,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.6,
+ "rating": 0
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/test/events.json b/assets/gameplay/songs/test/events.json
new file mode 100644
index 0000000..18fccc8
--- /dev/null
+++ b/assets/gameplay/songs/test/events.json
@@ -0,0 +1,708 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 1600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 3200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 4800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 6400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 8000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 11200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 12800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 14400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 16000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 17600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 20800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 22400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 25600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 27200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 30400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 32000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 33600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 35200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 36800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 38400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 41600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 44800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 49600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 51200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 54400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 56000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 59200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 62400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 67200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 68800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 70400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 73600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 75200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 76800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 78400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 81600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 83200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 84800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 88000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 89600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 91200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 92800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 94400,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 96000,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 97600,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 99200,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 100800,
+ "args": {
+ "tweenInfo": {
+ "time": 0,
+ "type": "smooth"
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/test/metadata.json b/assets/gameplay/songs/test/metadata.json
new file mode 100644
index 0000000..d34119e
--- /dev/null
+++ b/assets/gameplay/songs/test/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 150
+ }
+ ],
+ "name": "Test",
+ "characters": {
+ "spectator": "gf",
+ "opponent": "bf-pixel-opponent",
+ "player": "bf"
+ },
+ "icon": "bf",
+ "preview": {
+ "start": 0,
+ "end": 150000
+ },
+ "stage": null,
+ "credits": {
+ "composer": "Unknown",
+ "charter": "Unknown"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/thorns/Inst.ogg b/assets/gameplay/songs/thorns/Inst.ogg
new file mode 100644
index 0000000..47830db
Binary files /dev/null and b/assets/gameplay/songs/thorns/Inst.ogg differ
diff --git a/assets/gameplay/songs/thorns/Voices-Opponent.ogg b/assets/gameplay/songs/thorns/Voices-Opponent.ogg
new file mode 100644
index 0000000..0c744b4
Binary files /dev/null and b/assets/gameplay/songs/thorns/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/thorns/Voices-Player.ogg b/assets/gameplay/songs/thorns/Voices-Player.ogg
new file mode 100644
index 0000000..3a00f49
Binary files /dev/null and b/assets/gameplay/songs/thorns/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/thorns/chart.json b/assets/gameplay/songs/thorns/chart.json
new file mode 100644
index 0000000..1466ed1
--- /dev/null
+++ b/assets/gameplay/songs/thorns/chart.json
@@ -0,0 +1,7595 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 5052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 5684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 10105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 11052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 11368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 11842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 12315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 12631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 13578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 13894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 14368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 14842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 15157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 16105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 16421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 16894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 17368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 17684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 18631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 18947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 19421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 19894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 24947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 35052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 40105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 50526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 51157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 55578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 56210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 65368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 70421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 90947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 91578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 95999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 96631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 99157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 99789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 100263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 100736,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.4,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 2052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 5052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 5526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 5684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 6631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 9631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 10105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 10421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 11052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 11368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 11684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 11842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 12315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 12631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 12947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 13578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 13894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 14368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 14684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 14842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 15157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 15473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 16105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 16421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 16736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 16894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 17210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 17368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 17684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 78,
+ "time": 18631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 18947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 19421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 19894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 20842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 21631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 21789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 22894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 25894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 26684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 26842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 236,
+ "time": 30947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 236,
+ "time": 32210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 34578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 35052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 35526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 35842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 236,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 36789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 236,
+ "time": 37263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 38684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 39947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 40105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 43421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 44052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 44526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 44999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 48473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 49105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 49578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 49736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 50368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 50526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 51157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 55105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 55578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 56210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 65368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 67105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 69631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 70421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 72315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 74842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 78473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 82421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 83842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 87473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 90947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 91578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 92999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 95526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 95999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 96473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 96631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 97578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 98052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 99157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 99315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 99789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 100263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 100736,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.6,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 3157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 5052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 5684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 5999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 8210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 8526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 10105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 10736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 11368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 11842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 12315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 12631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 13263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 13894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 14368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 14842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 15157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 15789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 16421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 16894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 17368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 17684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 18315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 18947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 157,
+ "time": 19421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 157,
+ "time": 19894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 20210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 20526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 22421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 25578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 26052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 32526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 33789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 35052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 35368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 36947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 37578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 37894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 38526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 38842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 40105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 40421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 41368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 42315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 42947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 43578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 43894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 44842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 45157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 45473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 47368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 47999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 49894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 50210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 50526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 51157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 51473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53999,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 55263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 55578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 56210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 62842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 63789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 65368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 65684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 236,
+ "time": 70421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 74526,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79578,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 80842,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 81473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83052,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 83368,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 84000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 84315,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84631,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85263,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 85578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85894,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 86842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 87947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88105,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 88421,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 89052,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 89368,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 89684,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90315,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 90473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 90631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 90947,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 91578,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91894,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 92684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93157,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93473,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93789,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94105,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 94421,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95210,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 95684,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 157,
+ "time": 95999,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 157,
+ "time": 96631,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 96947,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 97736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98210,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98526,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 98842,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 99157,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 99473,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 99789,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 100263,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 100736,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1.2,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/thorns/events.json b/assets/gameplay/songs/thorns/events.json
new file mode 100644
index 0000000..d8034fd
--- /dev/null
+++ b/assets/gameplay/songs/thorns/events.json
@@ -0,0 +1,224 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 5052,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 10105,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 15157,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 20210,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 25263,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 30315,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 35368,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 40421,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 45473,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 50526,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 55578,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60631,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 65684,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 70736,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 75789,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 80842,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 85894,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 90947,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 95999,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/thorns/metadata.json b/assets/gameplay/songs/thorns/metadata.json
new file mode 100644
index 0000000..e084f06
--- /dev/null
+++ b/assets/gameplay/songs/thorns/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 190
+ }
+ ],
+ "name": "Thorns",
+ "characters": {
+ "spectator": "gf-pixel",
+ "opponent": "spirit",
+ "player": "bf-pixel"
+ },
+ "icon": "spirit",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "schoolEvil",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/tutorial/Inst.ogg b/assets/gameplay/songs/tutorial/Inst.ogg
new file mode 100644
index 0000000..c685f8c
Binary files /dev/null and b/assets/gameplay/songs/tutorial/Inst.ogg differ
diff --git a/assets/gameplay/songs/tutorial/Voices-Opponent.ogg b/assets/gameplay/songs/tutorial/Voices-Opponent.ogg
new file mode 100644
index 0000000..e482d9b
Binary files /dev/null and b/assets/gameplay/songs/tutorial/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/tutorial/Voices-Player.ogg b/assets/gameplay/songs/tutorial/Voices-Player.ogg
new file mode 100644
index 0000000..12612cb
Binary files /dev/null and b/assets/gameplay/songs/tutorial/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/tutorial/chart.json b/assets/gameplay/songs/tutorial/chart.json
new file mode 100644
index 0000000..9f0275c
--- /dev/null
+++ b/assets/gameplay/songs/tutorial/chart.json
@@ -0,0 +1,1114 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 750,
+ "time": 57600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1,
+ "rating": 0
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 750,
+ "time": 57600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 62550,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62850,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 63300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 63450,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 63900,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64050,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 64200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 64350,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64650,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 64500,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "time": 9600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 10800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 15600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 16800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 19200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 20400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 21600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 22800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 25200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 26400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31200,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 37200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 38400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41400,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 43200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 44400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 45600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48300,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48600,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48900,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49800,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 50400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 50700,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 51300,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 53400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54600,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 55200,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55800,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56400,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 750,
+ "time": 57600,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1,
+ "rating": 0
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/tutorial/events.json b/assets/gameplay/songs/tutorial/events.json
new file mode 100644
index 0000000..39415d7
--- /dev/null
+++ b/assets/gameplay/songs/tutorial/events.json
@@ -0,0 +1,281 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 9600,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1.3
+ }
+ },
+ {
+ "name": "camera",
+ "time": 14400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 14400,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1
+ }
+ },
+ {
+ "name": "anim",
+ "time": 18525,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 18525,
+ "args": {
+ "anim": "cheer",
+ "spr": "opponent",
+ "force": "cheer"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 19200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 19200,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1.3
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 24000,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1
+ }
+ },
+ {
+ "name": "anim",
+ "time": 28125,
+ "args": {
+ "anim": "hey",
+ "spr": "player",
+ "force": "hey"
+ }
+ },
+ {
+ "name": "anim",
+ "time": 28125,
+ "args": {
+ "anim": "cheer",
+ "spr": "opponent",
+ "force": "cheer"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 28800,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 28800,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1.3
+ }
+ },
+ {
+ "name": "camera",
+ "time": 33600,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 33600,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1
+ }
+ },
+ {
+ "name": "camera",
+ "time": 38400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 38400,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1.3
+ }
+ },
+ {
+ "name": "camera",
+ "time": 43200,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 43200,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 48000,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1.3
+ }
+ },
+ {
+ "name": "camera",
+ "time": 50400,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "zoom",
+ "time": 50400,
+ "args": {
+ "direct": true,
+ "tweenInfo": {
+ "ease": "elasticInOut",
+ "duration": 4
+ },
+ "zoom": 1
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/tutorial/metadata.json b/assets/gameplay/songs/tutorial/metadata.json
new file mode 100644
index 0000000..d709b5e
--- /dev/null
+++ b/assets/gameplay/songs/tutorial/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": -1,
+ "bpm": 100
+ }
+ ],
+ "name": "Tutorial",
+ "characters": {
+ "spectator": "",
+ "opponent": "gf",
+ "player": "bf"
+ },
+ "icon": "gf",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "mainStage",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/ugh/Inst.ogg b/assets/gameplay/songs/ugh/Inst.ogg
new file mode 100644
index 0000000..f5ca86d
Binary files /dev/null and b/assets/gameplay/songs/ugh/Inst.ogg differ
diff --git a/assets/gameplay/songs/ugh/Voices-Opponent.ogg b/assets/gameplay/songs/ugh/Voices-Opponent.ogg
new file mode 100644
index 0000000..20da77a
Binary files /dev/null and b/assets/gameplay/songs/ugh/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/ugh/Voices-Player.ogg b/assets/gameplay/songs/ugh/Voices-Player.ogg
new file mode 100644
index 0000000..22404ff
Binary files /dev/null and b/assets/gameplay/songs/ugh/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/ugh/chart.json b/assets/gameplay/songs/ugh/chart.json
new file mode 100644
index 0000000..c43a26e
--- /dev/null
+++ b/assets/gameplay/songs/ugh/chart.json
@@ -0,0 +1,7995 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 1125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 2062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 2250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 2625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 4125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 5250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 7125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 8062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 8250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 8625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 10125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 11625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17531,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 17625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 18187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19031,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23531,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 23625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25406,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 26625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 26812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 281,
+ "time": 27375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 27750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28406,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 28500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 28875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 29062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 29250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 29625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 29625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 29812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 656,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30187.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30281.25,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30843.75,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30937.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31312.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31406.25,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 32062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 32250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 32625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33187.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33281.25,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 281,
+ "time": 33375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 33562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33843.75,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33937.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 34125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34312.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34406.25,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 34875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 35062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 35250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 468,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 37125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 38062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 38250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 38625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 40125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 43125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 44062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 44250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 44625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 46125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 47250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 47625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49125,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53531,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 54000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 55125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59531,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 59625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 60187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65531,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 65625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67031,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71531,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 71625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 73125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 74062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 74250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 74625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 76125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 77250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 79125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 80062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 80250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 80625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 82125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 83250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 83625,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 2.2,
+ "rating": 3
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 1125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1406,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 1593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1781,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 2062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 2250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 2625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 3375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 4125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 4687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 4875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 5062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 5250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 6375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 6750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 6937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 7125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7406,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 7593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7781,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 7875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 8062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 8250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 8625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 9750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 10125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 10687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 10875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 11062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 11625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12093,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 13125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 13500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 13875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 14812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 15375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15656,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 15750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 15937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 16687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 16875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 17062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 17250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17531,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 17625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 17812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18093,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19031,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 19125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 19500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 19875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 20812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 21375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21656,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 21750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 21937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22031,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 22687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 22875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 23062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23531,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 23625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 23812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 24093,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24656,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25218,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25406,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25781,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 26062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 26625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 26812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 27093,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 27281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 281,
+ "time": 27375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27656,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 27750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 27750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 27843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 27937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 28218,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 28406,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 28500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28781,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 28875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 28968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 29062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 29250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 29625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 29625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 29812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 656,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 30562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 30750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 31125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31406,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 31687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 31968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 32062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 32250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 32625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 33000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 33281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 281,
+ "time": 33375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 33562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 34125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 34125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 34406,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 34687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 34875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 34968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 35062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 35250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 468,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 36375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 36750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 36937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 37125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37406,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 37593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37781,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 37875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 38062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 38250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 38625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 39375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 39750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 40125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 40687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 40875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 41062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 42375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 42750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 43125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43406,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 43593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43781,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 43875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 44062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 44250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 44625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 45375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 45750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 46125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 46687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 46875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 47250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 47625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48093,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 48656,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 48843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49125,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 49500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 49875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 50812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 51375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51656,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 51750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 51937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 52687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 52875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 53062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 53250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53531,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 53625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 53812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 54000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54093,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 54656,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 54843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 55125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 55875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 56812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 57375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57656,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 57750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 57937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58031,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 58500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 58687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 58875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 59062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 59250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59531,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 59625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 59812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60093,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 60750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60843,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 61125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 61500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 61687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 61875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 62812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63281,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63656,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 63750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 63937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64031,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 64687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 64875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 65062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 65250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65437,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65531,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 65625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 65812,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66093,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 66750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66843,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67031,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 67125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 67500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 67687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 67875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 68812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69281,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69656,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 69750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 69937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70031,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 70687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 70875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 71062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 71250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71437,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71531,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 93,
+ "time": 71625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 71812,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 72375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 72750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 73125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73406,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 73593,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73781,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73968,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 74062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 74250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 74625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 75375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75562,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 75750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 76125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 76687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 77062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 77250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 78375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 79125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79406,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 79593,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79781,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79968,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 93,
+ "time": 80062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 80250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 80625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 93,
+ "time": 81375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81562,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 93,
+ "time": 81750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 82125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 82687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 82875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 83250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 83625,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 2.3,
+ "rating": 4
+ },
+ {
+ "chart": [
+ {
+ "direction": 3,
+ "time": 0,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 1125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 1500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 1875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 2250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 2625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 3000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 3375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 3750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 4125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 4500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 4875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 5062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 5250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 5625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 6000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 6375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 6750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 7125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 7500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 7875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 8250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 8625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 9000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 9375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 9750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 10125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 10500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 10875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 11250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 11625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 12000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 12375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 12750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 12937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 13125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 13875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 14625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 15000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 15375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 187,
+ "time": 15750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 16125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 16312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 16500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 16875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 17625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 562,
+ "time": 18000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 18000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 18375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 18750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 18937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 19125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 19875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 20625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 21000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 21375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 187,
+ "time": 21750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 22125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 22312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 22500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 22875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 23625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 562,
+ "time": 24000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 24000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 24187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 25687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 27000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 27187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 27375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 281,
+ "time": 27375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 27750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 27750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 28125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 28125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 28312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 28500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 28500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 28687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 28875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 28875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 29250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 29250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 29625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 1125,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 30000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 30187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 30375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 30750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 31500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 31687.5,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 31875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 32250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 32625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 33000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 33375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 281,
+ "time": 33375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 33750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 33750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 34125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 34125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 34500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 34500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 34687.5,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 34875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 34875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 35250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 35625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 35625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 562,
+ "time": 36000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 36000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 36375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 36750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 37125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 37500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 37875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 38250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 38625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 39375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 40125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 40500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 40875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 41062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 41250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 41625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 42000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 42375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 43125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 43500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 43875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 44250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 44625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 45000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 45375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 45750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 46125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 46500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 46875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 47250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 48000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48187,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 48750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 48937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49125,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 50625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 51000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 51375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 187,
+ "time": 51750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 52125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 52312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 52500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 52875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 54000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 54000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54187,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 54750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 54937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 56625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 57000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 57375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 187,
+ "time": 57750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 58125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 58312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 58500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 58875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 59625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 60000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 60000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 60375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 60750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 60937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 61687,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 61875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 62250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 62625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 63000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 63375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 187,
+ "time": 63750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 64312,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 64875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 65625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 66000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 66750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66937,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 67687,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 67875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 68250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 68625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 69000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 187,
+ "time": 69375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 187,
+ "time": 69750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 70125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 70312,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 70500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 70875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 71625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 281,
+ "time": 72000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 72000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 72750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 73125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 73500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 73875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 74250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74625,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75375,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75750,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 76125,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 76500,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 76875,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 77062,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 77250,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 77625,
+ "type": "alt",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 78000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 78750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 79125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 79500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 79875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 281,
+ "time": 80250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80625,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 81375,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81750,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 82125,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 82500,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 82875,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83062,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 281,
+ "time": 83250,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83625,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 2,
+ "rating": 2
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/ugh/events.json b/assets/gameplay/songs/ugh/events.json
new file mode 100644
index 0000000..6d8147b
--- /dev/null
+++ b/assets/gameplay/songs/ugh/events.json
@@ -0,0 +1,180 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 0,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 6000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 12000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 18000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 24000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 27000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 30000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 33000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 36000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 42000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 54000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 66000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 72000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 78000,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/ugh/metadata.json b/assets/gameplay/songs/ugh/metadata.json
new file mode 100644
index 0000000..c0e5006
--- /dev/null
+++ b/assets/gameplay/songs/ugh/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 160
+ }
+ ],
+ "name": "Ugh",
+ "characters": {
+ "spectator": "gf-tankmen",
+ "opponent": "tankman",
+ "player": "bf"
+ },
+ "icon": "tankman",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "tankmanBattlefield",
+ "credits": {
+ "composer": "Kawai Sprite",
+ "charter": null
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/winter-horrorland/Inst.ogg b/assets/gameplay/songs/winter-horrorland/Inst.ogg
new file mode 100644
index 0000000..75ddd0e
Binary files /dev/null and b/assets/gameplay/songs/winter-horrorland/Inst.ogg differ
diff --git a/assets/gameplay/songs/winter-horrorland/Voices-Opponent.ogg b/assets/gameplay/songs/winter-horrorland/Voices-Opponent.ogg
new file mode 100644
index 0000000..1550dda
Binary files /dev/null and b/assets/gameplay/songs/winter-horrorland/Voices-Opponent.ogg differ
diff --git a/assets/gameplay/songs/winter-horrorland/Voices-Player.ogg b/assets/gameplay/songs/winter-horrorland/Voices-Player.ogg
new file mode 100644
index 0000000..0c3fa09
Binary files /dev/null and b/assets/gameplay/songs/winter-horrorland/Voices-Player.ogg differ
diff --git a/assets/gameplay/songs/winter-horrorland/chart.json b/assets/gameplay/songs/winter-horrorland/chart.json
new file mode 100644
index 0000000..c3ea77a
--- /dev/null
+++ b/assets/gameplay/songs/winter-horrorland/chart.json
@@ -0,0 +1,7905 @@
+{
+ "charts": [
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 9386.79245283019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 9764.15094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 10141.5094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 660,
+ "time": 10566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 11273.5849056604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 12358.4905660377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 12735.8490566038,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 13113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13584.9056603774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14056.6037735849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 14339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 14716,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 15094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 15471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 15849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 16226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 660,
+ "time": 16603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 660,
+ "time": 17358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 18490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 18867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 19245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20188.679245283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924526,
+ "time": 20377.358490566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 20754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 21132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 21132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 21509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 21886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 22264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 425.03773584906,
+ "time": 22641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23207.5471698113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23301.8867924528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23490.5660377359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23726.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23962.2641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924528,
+ "time": 24150.9433962264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24716.9811320755,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25471.6981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 25660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 27169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 27547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 27924,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 28301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 28679,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29433.9622641509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 30188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 31698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 94.3396226415148,
+ "time": 33396.2264150943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 33962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 34528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 330.188679245283,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 377.358490566038,
+ "time": 35377.358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924534,
+ "time": 35801.8867924528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 36320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 36556.6037735849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 36792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 36981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 37358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 37735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39433.9622641509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39811.320754717,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 40566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 41132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 41509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 42452.8301886792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 42830.1886792453,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 43018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 43396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 43773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 45188.679245283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 45566.0377358491,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45943.3962264151,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46132.0754716981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46509.4339622641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 707.999999999999,
+ "time": 46745.2830188679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47924,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 48254.7169811321,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 849,
+ "time": 48301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 188,
+ "time": 48632.0754716981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49009.4339622641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49150.9433962264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49339.6226415094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49528.3018867925,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50188,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 51320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 51698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52264.1509433962,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52641.5094339623,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 52830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53537.7358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53915.0943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 188,
+ "time": 54339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1415.71698113208,
+ "time": 54339.6226415094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 188,
+ "time": 54716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55094,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57547.1698113208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57877.358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58018,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58207.5471698113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58396.2264150943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58584.9056603774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58867,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 59245,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59622.641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59764.1509433962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 59952.8301886792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61320.7547169811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61698.1132075472,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 330.188679245283,
+ "time": 61886.7924528302,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 330.339622641514,
+ "time": 62264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 330.188679245283,
+ "time": 62641.5094339623,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 63018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63349.0566037736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63537.7358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 63726.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64103.7735849057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283.018867924528,
+ "time": 64481.1320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64905,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 65283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 65849.0566037736,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 66037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 188.679245283019,
+ "time": 66320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66603.7735849057,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 235.849056603774,
+ "time": 66933.9622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66981,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283.018867924528,
+ "time": 67311.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 67735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 67735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69622,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69716.9811320755,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69811.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70094.3396226415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70330.1886792453,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70471.6981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70754,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72264.1509433962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 72405.6603773585,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 72830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 73207,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 566,
+ "time": 73773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74481.1320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74669.8113207547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74858.4905660377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75047.1698113208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76415.0943396227,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77358.4905660377,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 78490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 78867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 79245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 566,
+ "time": 79811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82075.4716981132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82452.8301886792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83207.5471698113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83396.2264150943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83584.9056603774,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83962.2641509434,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84716,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86226.4150943396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86981.1320754717,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 87547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 94,
+ "time": 87924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 88113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88490,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 88679,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88867.9245283019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 89056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89433.9622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 89811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 90188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 90566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91698.1132075472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 92075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 92075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 566,
+ "time": 92830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 566,
+ "time": 92830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93773.5849056604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93962.2641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 94339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94528.3018867925,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 94716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 94905.6603773585,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 95283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 95330.1886792453,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 95849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 95849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 96226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924528,
+ "time": 96226.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 96792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 96981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 97169,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 97169.8113207547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 97358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 97358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 97547.1698113208,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 97735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 97735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 98113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 98113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 98490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99811.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100094.339622642,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100188.679245283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 236.207547169807,
+ "time": 100377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100377.358490566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100566.037735849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100707.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 100754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 100943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 101320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 101415.094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 101839.622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 101886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 102264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102688.679245283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 102830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 103018,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 103207,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283.018867924528,
+ "time": 103207.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 103396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94.3396226415094,
+ "time": 103584.905660377,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 103773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 103773.58490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 104150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 104150.943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 104528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107169,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 107547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 107924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 108301,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109433,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110377.358490566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 110566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283.018867924528,
+ "time": 110943.396226415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 111320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111650.943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 189.150943396237,
+ "time": 112075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 112830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113207,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113207.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 113584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113962,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 114339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114716.981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 116037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 116037,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118301,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118490,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 118867,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 119245,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 119622,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 120000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 120377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 754,
+ "time": 120754,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 121886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 122075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 122264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 122641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 123018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 754,
+ "time": 123396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 123773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 124528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 124905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 125283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 125283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 125660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 126981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 127358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 127358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 127735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 377,
+ "time": 128113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 377,
+ "time": 128113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 129056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 129433,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129622.641509434,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 129811,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "normal",
+ "speed": 1.2,
+ "rating": 1
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 9386.79245283019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 9764.15094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 10141.5094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 660,
+ "time": 10566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 11273.5849056604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 12358.4905660377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 12735.8490566038,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 13113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13584.9056603774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14056.6037735849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 14339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 14716,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 15094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 15471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 15849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 16226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 660,
+ "time": 16603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 660,
+ "time": 17358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 18490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 18867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 19245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 20188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 20377,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 20754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 21132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 21132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 21509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 21886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 22264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 425.03773584906,
+ "time": 22641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23207.5471698113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23301.8867924528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23490.5660377359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23726.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23962.2641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924528,
+ "time": 24150.9433962264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 24716.9811320755,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25471.6981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 25660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 27169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 27547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 27924,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 28301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 28679,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 29339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29433.9622641509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 29622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 30000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 30188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 30754.7169811321,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 31132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 31509.4339622642,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 31698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 32641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 32830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 94.3396226415148,
+ "time": 33396.2264150943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 33962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 34528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 330.188679245283,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 377.358490566038,
+ "time": 35377.358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924534,
+ "time": 35801.8867924528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 36320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 36556.6037735849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 36792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 36981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 37358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 37735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 39433.9622641509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 39528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 39622.641509434,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 39811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 40566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 41132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 41509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 42452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 42641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 42830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 43018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 43396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 43773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 45188.679245283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 45566.0377358491,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45943.3962264151,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46132.0754716981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46509.4339622641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 707.999999999999,
+ "time": 46745.2830188679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47924,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 48254.7169811321,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 849,
+ "time": 48301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 188,
+ "time": 48632.0754716981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49009.4339622641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49150.9433962264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49339.6226415094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49528.3018867925,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50188,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 51320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 51698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 52641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 52830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53537.7358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53915.0943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 188,
+ "time": 54339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1415.71698113208,
+ "time": 54339.6226415094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 188,
+ "time": 54716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55094,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 55377.358490566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57547.1698113208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57877.358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58018,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58207.5471698113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58396.2264150943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58584.9056603774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58867,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 59245,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59622.641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59764.1509433962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 59952.8301886792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 60943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 61320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 62075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 62264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 62830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 63018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63349.0566037736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63537.7358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 63726.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64103.7735849057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283.018867924528,
+ "time": 64481.1320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64905,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 65094,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 65283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 66037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 188.679245283019,
+ "time": 66320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 66603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 235.849056603774,
+ "time": 66933.9622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66981,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283.018867924528,
+ "time": 67311.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 67735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 67735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69622,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69716.9811320755,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69811.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70094.3396226415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70330.1886792453,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70471.6981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70754,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72264.1509433962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 72405.6603773585,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 72830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 73207,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 566,
+ "time": 73773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74481.1320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74669.8113207547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74858.4905660377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 75047.1698113208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 75754.7169811321,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 75849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 76415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 76603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 77547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 77924,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 78301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 78490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 78867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 79245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 566,
+ "time": 79811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 81132.0754716981,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82075.4716981132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82452.8301886792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 83207,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83962,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 84339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84716,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 86981,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 87547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 94,
+ "time": 87924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 88113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88490,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 88679,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 88867.9245283019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 89056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89433.9622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 89811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 90188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 90566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91698.1132075472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 92075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 92075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 566,
+ "time": 92830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 566,
+ "time": 92830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93773.5849056604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93962.2641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 94150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94150.9433962264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 94245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 94339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 94339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 94716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 94905.6603773585,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 95283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 95330.1886792453,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 95849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 95849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 96226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924528,
+ "time": 96226.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 96603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 96792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 96981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 97169,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 97169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 97358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 97358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 97547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 97735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 97735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 98113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 98113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 98490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99811.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100094.339622642,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 100188.679245283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 100283.018867925,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 236.207547169807,
+ "time": 100377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100377.358490566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 100707.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 100754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 100943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 101320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 101415.094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 101839.622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 101886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 102264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102688.679245283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 102830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 103018,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 103207,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283.018867924528,
+ "time": 103207.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 103396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 103584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 103773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 103773.58490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 104150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 104150.943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 104528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107169,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 107547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 107924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 108301,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 109339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109433,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 109622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 110377,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 110566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 111320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111650.943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 189.150943396237,
+ "time": 112075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 112830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113207,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113207.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 113584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113962,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 114339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114716.981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114905,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 116037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 116037,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118301,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118490,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 118867,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 119245,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 119622,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 120000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 120377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 754,
+ "time": 120754,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 121320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 121698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 121886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 122075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 122264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 122641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 123018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 754,
+ "time": 123396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 123773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 124528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 124905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 125283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 125283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 125471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 125660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 126792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 126981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 126981,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 127358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 127358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 127735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 377,
+ "time": 128113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 377,
+ "time": 128113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 129056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 129433,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 129622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 129811,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "hard",
+ "speed": 1.4,
+ "rating": 2
+ },
+ {
+ "chart": [
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 9386.79245283019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 9764.15094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 10141.5094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 660,
+ "time": 10566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 11273.5849056604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 12358.4905660377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 12735.8490566038,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 13113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 13584.9056603774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 14056.6037735849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 14339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 14716,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 15094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 15471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 15849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 660,
+ "time": 16603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 660,
+ "time": 17358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 18490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 18867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 19622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 20377,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 20754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 21132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 21132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 21509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 21886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 22264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 425.03773584906,
+ "time": 22641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 23207.5471698113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23301.8867924528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 23490.5660377359,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 23726.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 23962.2641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924528,
+ "time": 24150.9433962264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 24716.9811320755,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 24905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 25094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 25283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 25471.6981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 25660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 26415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 26603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 26792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 27169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 27924,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 28301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 28679,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29433,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 29811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 30188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 30943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 31320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 471,
+ "time": 31698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 32452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 32830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 94.3396226415148,
+ "time": 33396.2264150943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 33584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 33773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 33962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 34528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 330.188679245283,
+ "time": 35000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 377.358490566038,
+ "time": 35377.358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924534,
+ "time": 35801.8867924528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 36320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 36556.6037735849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 36792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 36981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 37358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 37735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 39622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 40000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 40566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 41132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 41509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 42641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 43018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 43396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 43773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 45188.679245283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 45566.0377358491,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 45943.3962264151,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46132.0754716981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 46320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 46509.4339622641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 707.999999999999,
+ "time": 46745.2830188679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 47169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 47547,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 47924,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 48254.7169811321,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 849,
+ "time": 48301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 188,
+ "time": 48632.0754716981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49009.4339622641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 49150.9433962264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 49339.6226415094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 49528.3018867925,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 49937,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50188,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 50440,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 51320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 52452,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 52830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 53113.2075471698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 53537.7358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 53915.0943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 54339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 1415.71698113208,
+ "time": 54339.6226415094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 188,
+ "time": 54716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55094,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 55471,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 55660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 56603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 57547.1698113208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 57877.358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 58018,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 58207.5471698113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 58396.2264150943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58584.9056603774,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 58867,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 59056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 59245,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 59622.641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 59764.1509433962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 59952.8301886792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 60566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 61509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 61698,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 61886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 62264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 62641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 63018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 63349.0566037736,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 63537.7358490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 63726.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 64103.7735849057,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283.018867924528,
+ "time": 64481.1320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 64905,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 64905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 65283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 65660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 66037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 188.679245283019,
+ "time": 66320.7547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 66415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 66603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 235.849056603774,
+ "time": 66933.9622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 66981,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283.018867924528,
+ "time": 67311.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 67358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 67735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 67735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 69622,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 69716.9811320755,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 69811.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 70094.3396226415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 70330.1886792453,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 70471.6981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 70754,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 71320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 71509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 71698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 71886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 72075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 72264.1509433962,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 72405.6603773585,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 72830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 73207,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 73584,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 566,
+ "time": 73773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74481.1320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 74669.8113207547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 74858.4905660377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 75047.1698113208,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 75660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 76226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 76792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 77358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 77735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 78113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 78490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 78867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 79245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 79622,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 566,
+ "time": 79811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 80754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 80943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 81132,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 81509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 81698,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 81886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82075.4716981132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 82264,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82452.8301886792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 82641,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 82830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 83018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 83396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 83773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 84528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 84716,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 84905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85094,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 85471,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 85660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 85849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 86037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 86603,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 86792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 87169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 87358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 87547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 94,
+ "time": 87924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 88113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 88301,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 88490,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 88679,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 88679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 88867.9245283019,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 89056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 89056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 89433.9622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 89811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 89811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 90188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 90566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 90566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 91132,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 91698.1132075472,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 92075,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 566,
+ "time": 92075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 566,
+ "time": 92830,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 566,
+ "time": 92830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 93773.5849056604,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 93962.2641509434,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 94150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 94150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 94339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 94716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 94905.6603773585,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 95283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 95330.1886792453,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 95849,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 95849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 96226,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283.018867924528,
+ "time": 96226.4150943396,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 96792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 96981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 97169,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 97169,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 97358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 97358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 97735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 97735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 98113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 98113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 98490,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 99811.320754717,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 99905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100094.339622642,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 100188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 236.207547169807,
+ "time": 100377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 100707.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 100754,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 100943,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 101320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 101415.094339623,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 101839.622641509,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 101886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 102264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 102688.679245283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 102830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 94,
+ "time": 103018,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 94,
+ "time": 103207,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283.018867924528,
+ "time": 103207.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 103773,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 103773.58490566,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 104150,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 104150.943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 104528,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 105849,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106320,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106415,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 106603,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 106792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 106981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 107169,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 107358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 107547,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 107924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 108113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 108301,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 108867,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109433,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 109811,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 110000,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 110188,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 110566,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 110943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 111320,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 111650.943396226,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 111886,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 189.150943396237,
+ "time": 112075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 112452,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 112830,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 113207,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113207.547169811,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 113584,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 113962,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 114339,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114716,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 114716.981132075,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 114905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 115283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 115283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 115660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 115660,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 116037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 754,
+ "time": 116037,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 117924,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 118301,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 118490,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 118679,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 118867,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 119056,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 119245,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 119622,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 120000,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 120377,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 754,
+ "time": 120754,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 120943,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "time": 121509,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 121886,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 122264,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 283,
+ "time": 122641,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 123018,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "length": 754,
+ "time": 123396,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 94,
+ "time": 123773,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124150,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 124339,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "length": 283,
+ "time": 124528,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "length": 283,
+ "time": 124905,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 125283,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 125283,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 283,
+ "time": 125660,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 126037,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126415,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126792,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 126792,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "time": 126981,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 3,
+ "time": 127358,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 127358,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 2,
+ "time": 127735,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 127735,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 1,
+ "length": 377,
+ "time": 128113,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 1,
+ "length": 377,
+ "time": 128113,
+ "type": "",
+ "strum": "opponent"
+ },
+ {
+ "direction": 0,
+ "time": 129056,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 3,
+ "time": 129245,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 0,
+ "time": 129433,
+ "type": "",
+ "strum": "player"
+ },
+ {
+ "direction": 2,
+ "time": 129811,
+ "type": "",
+ "strum": "player"
+ }
+ ],
+ "difficulty": "easy",
+ "speed": 1,
+ "rating": 1
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/winter-horrorland/events.json b/assets/gameplay/songs/winter-horrorland/events.json
new file mode 100644
index 0000000..cc8c353
--- /dev/null
+++ b/assets/gameplay/songs/winter-horrorland/events.json
@@ -0,0 +1,437 @@
+{
+ "events": [
+ {
+ "name": "camera",
+ "time": 3018.8679245283,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "tweenInfo": {
+ "ease": "CLASSIC",
+ "duration": 4
+ },
+ "strum": "spectator"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 9433,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 15094,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 21132,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 27169,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 33396,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 39433,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 45283,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 46792,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 48301,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 51320,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 52830,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 54339,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 57547,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 60566,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 63396,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 64905,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 69622,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 75660,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 81509,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 83018,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 84528,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 86037,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 87547,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 92075,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 93773,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 95283,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 98113,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 101320,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 102830,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 108867,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 111698,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 113207,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 114716,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 120754,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 123773,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 125283,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 126792,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "opponent"
+ }
+ },
+ {
+ "name": "camera",
+ "time": 129056,
+ "args": {
+ "pos": {
+ "x": 0,
+ "y": 0
+ },
+ "strum": "player"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/gameplay/songs/winter-horrorland/metadata.json b/assets/gameplay/songs/winter-horrorland/metadata.json
new file mode 100644
index 0000000..cd3b939
--- /dev/null
+++ b/assets/gameplay/songs/winter-horrorland/metadata.json
@@ -0,0 +1,28 @@
+{
+ "bpmChanges": [
+ {
+ "timeSignature": {
+ "denominator": 4,
+ "numerator": 4
+ },
+ "time": 0,
+ "bpm": 159
+ }
+ ],
+ "name": "Winter Horrorland",
+ "characters": {
+ "spectator": "gf-christmas",
+ "opponent": "monster-christmas",
+ "player": "bf-christmas"
+ },
+ "icon": "monster",
+ "preview": {
+ "start": 0,
+ "end": 15000
+ },
+ "stage": "mallEvil",
+ "credits": {
+ "composer": "Bassetfilms",
+ "charter": "ninjamuffin99 + MtH"
+ }
+}
\ No newline at end of file
diff --git a/assets/gameplay/strumline/default/noteSplashes.png b/assets/gameplay/strumline/default/noteSplashes.png
new file mode 100644
index 0000000..02d146d
Binary files /dev/null and b/assets/gameplay/strumline/default/noteSplashes.png differ
diff --git a/assets/gameplay/strumline/default/noteSplashes.xml b/assets/gameplay/strumline/default/noteSplashes.xml
new file mode 100644
index 0000000..3252f46
--- /dev/null
+++ b/assets/gameplay/strumline/default/noteSplashes.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/strumline/default/noteStrumline.png b/assets/gameplay/strumline/default/noteStrumline.png
new file mode 100644
index 0000000..148bdd0
Binary files /dev/null and b/assets/gameplay/strumline/default/noteStrumline.png differ
diff --git a/assets/gameplay/strumline/default/noteStrumline.xml b/assets/gameplay/strumline/default/noteStrumline.xml
new file mode 100644
index 0000000..2ead43a
--- /dev/null
+++ b/assets/gameplay/strumline/default/noteStrumline.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/strumline/default/notes.png b/assets/gameplay/strumline/default/notes.png
new file mode 100644
index 0000000..5e491b5
Binary files /dev/null and b/assets/gameplay/strumline/default/notes.png differ
diff --git a/assets/gameplay/strumline/default/notes.xml b/assets/gameplay/strumline/default/notes.xml
new file mode 100644
index 0000000..c8e4782
--- /dev/null
+++ b/assets/gameplay/strumline/default/notes.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/strumline/default/sustainCover.png b/assets/gameplay/strumline/default/sustainCover.png
new file mode 100644
index 0000000..a2d8b1f
Binary files /dev/null and b/assets/gameplay/strumline/default/sustainCover.png differ
diff --git a/assets/gameplay/strumline/default/sustainCover.xml b/assets/gameplay/strumline/default/sustainCover.xml
new file mode 100644
index 0000000..95c5bc7
--- /dev/null
+++ b/assets/gameplay/strumline/default/sustainCover.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/gameplay/strumlineData/opponent.json b/assets/gameplay/strumlineData/opponent.json
new file mode 100644
index 0000000..00f0c17
--- /dev/null
+++ b/assets/gameplay/strumlineData/opponent.json
@@ -0,0 +1,7 @@
+{
+ "computerControlled": true,
+ "renderStrumline": true,
+ "strumlinePosition": "left",
+ "renderRatings": false,
+ "rgbToUse": "player"
+}
\ No newline at end of file
diff --git a/assets/gameplay/strumlineData/player.json b/assets/gameplay/strumlineData/player.json
new file mode 100644
index 0000000..74e4947
--- /dev/null
+++ b/assets/gameplay/strumlineData/player.json
@@ -0,0 +1,7 @@
+{
+ "computerControlled": false,
+ "renderStrumline": true,
+ "strumlinePosition": "right",
+ "renderRatings": true,
+ "rgbToUse": "player"
+}
\ No newline at end of file
diff --git a/assets/gameplay/strumlineData/spectator.json b/assets/gameplay/strumlineData/spectator.json
new file mode 100644
index 0000000..7226079
--- /dev/null
+++ b/assets/gameplay/strumlineData/spectator.json
@@ -0,0 +1,7 @@
+{
+ "computerControlled": true,
+ "renderStrumline": false,
+ "strumlinePosition": "left",
+ "renderRatings": false,
+ "rgbToUse": "spectator"
+}
\ No newline at end of file
diff --git a/assets/ui/credits/arrow.png b/assets/ui/credits/arrow.png
new file mode 100644
index 0000000..50eaf9c
Binary files /dev/null and b/assets/ui/credits/arrow.png differ
diff --git a/assets/ui/credits/icons/crushernotdrip.png b/assets/ui/credits/icons/crushernotdrip.png
new file mode 100644
index 0000000..2aa5398
Binary files /dev/null and b/assets/ui/credits/icons/crushernotdrip.png differ
diff --git a/assets/ui/credits/icons/gameboy1969.png b/assets/ui/credits/icons/gameboy1969.png
new file mode 100644
index 0000000..83fa57d
Binary files /dev/null and b/assets/ui/credits/icons/gameboy1969.png differ
diff --git a/assets/ui/credits/icons/techniktil.png b/assets/ui/credits/icons/techniktil.png
new file mode 100644
index 0000000..187117c
Binary files /dev/null and b/assets/ui/credits/icons/techniktil.png differ
diff --git a/assets/ui/credits/socials/github.png b/assets/ui/credits/socials/github.png
new file mode 100644
index 0000000..a3e354b
Binary files /dev/null and b/assets/ui/credits/socials/github.png differ
diff --git a/assets/ui/credits/socials/twitter.png b/assets/ui/credits/socials/twitter.png
new file mode 100644
index 0000000..7492d4f
Binary files /dev/null and b/assets/ui/credits/socials/twitter.png differ
diff --git a/assets/ui/credits/socials/website.png b/assets/ui/credits/socials/website.png
new file mode 100644
index 0000000..18020ce
Binary files /dev/null and b/assets/ui/credits/socials/website.png differ
diff --git a/assets/ui/credits/socials/weirdCat.png b/assets/ui/credits/socials/weirdCat.png
new file mode 100644
index 0000000..ccfc7d1
Binary files /dev/null and b/assets/ui/credits/socials/weirdCat.png differ
diff --git a/assets/ui/credits/socials/youtube.png b/assets/ui/credits/socials/youtube.png
new file mode 100644
index 0000000..0bac172
Binary files /dev/null and b/assets/ui/credits/socials/youtube.png differ
diff --git a/assets/ui/fonts/5by7.ttf b/assets/ui/fonts/5by7.ttf
new file mode 100644
index 0000000..3d9c65d
Binary files /dev/null and b/assets/ui/fonts/5by7.ttf differ
diff --git a/assets/ui/fonts/5by7_b.ttf b/assets/ui/fonts/5by7_b.ttf
new file mode 100644
index 0000000..66ac984
Binary files /dev/null and b/assets/ui/fonts/5by7_b.ttf differ
diff --git a/assets/ui/fonts/alphabet/bold.json b/assets/ui/fonts/alphabet/bold.json
new file mode 100644
index 0000000..4663577
--- /dev/null
+++ b/assets/ui/fonts/alphabet/bold.json
@@ -0,0 +1,3 @@
+{
+ "offsets": []
+}
\ No newline at end of file
diff --git a/assets/ui/fonts/alphabet/bold.png b/assets/ui/fonts/alphabet/bold.png
new file mode 100644
index 0000000..acf3305
Binary files /dev/null and b/assets/ui/fonts/alphabet/bold.png differ
diff --git a/assets/ui/fonts/alphabet/bold.xml b/assets/ui/fonts/alphabet/bold.xml
new file mode 100644
index 0000000..6ab850a
--- /dev/null
+++ b/assets/ui/fonts/alphabet/bold.xml
@@ -0,0 +1,255 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/fonts/alphabet/default.json b/assets/ui/fonts/alphabet/default.json
new file mode 100644
index 0000000..6103db8
--- /dev/null
+++ b/assets/ui/fonts/alphabet/default.json
@@ -0,0 +1,9 @@
+{
+ "offsets": [
+ {
+ "character": "-",
+ "x": 0,
+ "y": -12
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/ui/fonts/alphabet/default.png b/assets/ui/fonts/alphabet/default.png
new file mode 100644
index 0000000..35afd79
Binary files /dev/null and b/assets/ui/fonts/alphabet/default.png differ
diff --git a/assets/ui/fonts/alphabet/default.xml b/assets/ui/fonts/alphabet/default.xml
new file mode 100644
index 0000000..a56c222
--- /dev/null
+++ b/assets/ui/fonts/alphabet/default.xml
@@ -0,0 +1,399 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/fonts/vcr.ttf b/assets/ui/fonts/vcr.ttf
new file mode 100644
index 0000000..dcca687
Binary files /dev/null and b/assets/ui/fonts/vcr.ttf differ
diff --git a/assets/ui/freeplay/backingCard/backing-text-yeah/Animation.json b/assets/ui/freeplay/backingCard/backing-text-yeah/Animation.json
new file mode 100644
index 0000000..6857d78
--- /dev/null
+++ b/assets/ui/freeplay/backingCard/backing-text-yeah/Animation.json
@@ -0,0 +1,557 @@
+{
+"AN": {
+"N": "boyfriend_freeplay_animations_backing_cards",
+"SN": "BF back card confirm raw",
+"TL": {
+"L": [
+{
+"LN": "Layer_4",
+"FR": [
+{
+"I": 0,
+"DU": 7,
+"E": []
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BIG SHOES",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 457.95,
+"y": 29.5
+},
+"M3D": [
+1.2097015380859376,
+0.0,
+0.0,
+0.0,
+0.0,
+0.4573822021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-878.85,
+-235.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "YEAH",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 441.20000000000007,
+"y": 64.5
+},
+"M3D": [
+1.26837158203125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.27984619140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-403.2,
+-145.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "YES YES YES",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 570.0,
+"y": 38.45
+},
+"M3D": [
+1.19366455078125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.3771820068359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-958.4,
+-48.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "GET IT",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 474.8,
+"y": 60.550000000000007
+},
+"M3D": [
+1.3605804443359376,
+0.0,
+0.0,
+0.0,
+0.0,
+0.1800537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-624.0,
+49.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "BIG SHOES",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 458.0,
+"y": 29.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-635.6,
+-251.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "YEAH",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 441.20000000000007,
+"y": 64.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-651.2,
+-190.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "YES YES YES",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 570.0,
+"y": 38.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-638.4,
+-74.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "GET IT",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 474.8,
+"y": 60.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-645.2,
+-0.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 21,
+"E": [
+{
+"SI": {
+"SN": "BIG SHOES",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 458.0,
+"y": 29.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-640.4,
+-251.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "YEAH",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 441.20000000000007,
+"y": 64.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-643.2,
+-190.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "YES YES YES",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 570.0,
+"y": 38.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-644.8,
+-74.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "GET IT",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 474.8,
+"y": 60.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-638.8,
+-0.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+"SD": {
+"S": [
+{
+"SN": "BIG SHOES",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0000",
+"M3D": [
+0.8266448974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8266448974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "YEAH",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0001",
+"M3D": [
+0.7884063720703125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7884063720703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "YES YES YES",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0002",
+"M3D": [
+0.8377532958984375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8377532958984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "GET IT",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0003",
+"M3D": [
+0.7349700927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7349700927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+}
+]
+},
+"MD": {
+"FRT": 24.0
+}
+}
\ No newline at end of file
diff --git a/assets/ui/freeplay/backingCard/backing-text-yeah/spritemap1.json b/assets/ui/freeplay/backingCard/backing-text-yeah/spritemap1.json
new file mode 100644
index 0000000..0169e42
--- /dev/null
+++ b/assets/ui/freeplay/backingCard/backing-text-yeah/spritemap1.json
@@ -0,0 +1,15 @@
+{"ATLAS": {"SPRITES":[
+{"SPRITE" : {"name": "0000","x":0,"y":436,"w":500,"h":71,"rotated": false}},
+{"SPRITE" : {"name": "0001","x":0,"y":170,"w":529,"h":164,"rotated": false}},
+{"SPRITE" : {"name": "0002","x":0,"y":339,"w":532,"h":92,"rotated": false}},
+{"SPRITE" : {"name": "0003","x":0,"y":0,"w":601,"h":165,"rotated": false}}
+]},
+"meta": {
+"app": "Adobe Animate",
+"version": "22.0.5.191",
+"image": "spritemap1.png",
+"format": "RGBA8888",
+"size": {"w":601,"h":507},
+"resolution": "1"
+}
+}
diff --git a/assets/ui/freeplay/backingCard/backing-text-yeah/spritemap1.png b/assets/ui/freeplay/backingCard/backing-text-yeah/spritemap1.png
new file mode 100644
index 0000000..49010d9
Binary files /dev/null and b/assets/ui/freeplay/backingCard/backing-text-yeah/spritemap1.png differ
diff --git a/assets/ui/freeplay/backingCard/beatdark.png b/assets/ui/freeplay/backingCard/beatdark.png
new file mode 100644
index 0000000..6be606c
Binary files /dev/null and b/assets/ui/freeplay/backingCard/beatdark.png differ
diff --git a/assets/ui/freeplay/backingCard/beatglow.png b/assets/ui/freeplay/backingCard/beatglow.png
new file mode 100644
index 0000000..04bc62e
Binary files /dev/null and b/assets/ui/freeplay/backingCard/beatglow.png differ
diff --git a/assets/ui/freeplay/backingCard/cardGlow.png b/assets/ui/freeplay/backingCard/cardGlow.png
new file mode 100644
index 0000000..f308f1e
Binary files /dev/null and b/assets/ui/freeplay/backingCard/cardGlow.png differ
diff --git a/assets/ui/freeplay/backingCard/confirmGlow.png b/assets/ui/freeplay/backingCard/confirmGlow.png
new file mode 100644
index 0000000..4e485cf
Binary files /dev/null and b/assets/ui/freeplay/backingCard/confirmGlow.png differ
diff --git a/assets/ui/freeplay/backingCard/confirmGlow2.png b/assets/ui/freeplay/backingCard/confirmGlow2.png
new file mode 100644
index 0000000..2476e2e
Binary files /dev/null and b/assets/ui/freeplay/backingCard/confirmGlow2.png differ
diff --git a/assets/ui/freeplay/backingCard/glowingText.png b/assets/ui/freeplay/backingCard/glowingText.png
new file mode 100644
index 0000000..88d5964
Binary files /dev/null and b/assets/ui/freeplay/backingCard/glowingText.png differ
diff --git a/assets/ui/freeplay/backingCard/pinkBack.png b/assets/ui/freeplay/backingCard/pinkBack.png
new file mode 100644
index 0000000..2963bf7
Binary files /dev/null and b/assets/ui/freeplay/backingCard/pinkBack.png differ
diff --git a/assets/ui/freeplay/capsule/default.png b/assets/ui/freeplay/capsule/default.png
new file mode 100644
index 0000000..605d203
Binary files /dev/null and b/assets/ui/freeplay/capsule/default.png differ
diff --git a/assets/ui/freeplay/capsule/default.xml b/assets/ui/freeplay/capsule/default.xml
new file mode 100644
index 0000000..1538692
--- /dev/null
+++ b/assets/ui/freeplay/capsule/default.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/capsule/details/bignumbers.png b/assets/ui/freeplay/capsule/details/bignumbers.png
new file mode 100644
index 0000000..7704be3
Binary files /dev/null and b/assets/ui/freeplay/capsule/details/bignumbers.png differ
diff --git a/assets/ui/freeplay/capsule/details/bignumbers.xml b/assets/ui/freeplay/capsule/details/bignumbers.xml
new file mode 100644
index 0000000..2d501c0
--- /dev/null
+++ b/assets/ui/freeplay/capsule/details/bignumbers.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/capsule/details/bpmtext.png b/assets/ui/freeplay/capsule/details/bpmtext.png
new file mode 100644
index 0000000..1ef975c
Binary files /dev/null and b/assets/ui/freeplay/capsule/details/bpmtext.png differ
diff --git a/assets/ui/freeplay/capsule/details/difficultytext.png b/assets/ui/freeplay/capsule/details/difficultytext.png
new file mode 100644
index 0000000..f120817
Binary files /dev/null and b/assets/ui/freeplay/capsule/details/difficultytext.png differ
diff --git a/assets/ui/freeplay/capsule/details/new.png b/assets/ui/freeplay/capsule/details/new.png
new file mode 100644
index 0000000..a26c906
Binary files /dev/null and b/assets/ui/freeplay/capsule/details/new.png differ
diff --git a/assets/ui/freeplay/capsule/details/new.xml b/assets/ui/freeplay/capsule/details/new.xml
new file mode 100644
index 0000000..21b846d
--- /dev/null
+++ b/assets/ui/freeplay/capsule/details/new.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/capsule/details/smallnumbers.png b/assets/ui/freeplay/capsule/details/smallnumbers.png
new file mode 100644
index 0000000..184e2af
Binary files /dev/null and b/assets/ui/freeplay/capsule/details/smallnumbers.png differ
diff --git a/assets/ui/freeplay/capsule/details/smallnumbers.xml b/assets/ui/freeplay/capsule/details/smallnumbers.xml
new file mode 100644
index 0000000..a100f95
--- /dev/null
+++ b/assets/ui/freeplay/capsule/details/smallnumbers.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/capsule/details/weektypes.png b/assets/ui/freeplay/capsule/details/weektypes.png
new file mode 100644
index 0000000..61e7006
Binary files /dev/null and b/assets/ui/freeplay/capsule/details/weektypes.png differ
diff --git a/assets/ui/freeplay/capsule/details/weektypes.xml b/assets/ui/freeplay/capsule/details/weektypes.xml
new file mode 100644
index 0000000..76bcc31
--- /dev/null
+++ b/assets/ui/freeplay/capsule/details/weektypes.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/capsule/pico.png b/assets/ui/freeplay/capsule/pico.png
new file mode 100644
index 0000000..139ae41
Binary files /dev/null and b/assets/ui/freeplay/capsule/pico.png differ
diff --git a/assets/ui/freeplay/capsule/pico.xml b/assets/ui/freeplay/capsule/pico.xml
new file mode 100644
index 0000000..5aab839
--- /dev/null
+++ b/assets/ui/freeplay/capsule/pico.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/difficulties/easy.png b/assets/ui/freeplay/difficulties/easy.png
new file mode 100644
index 0000000..fe2d68d
Binary files /dev/null and b/assets/ui/freeplay/difficulties/easy.png differ
diff --git a/assets/ui/freeplay/difficulties/erect.png b/assets/ui/freeplay/difficulties/erect.png
new file mode 100644
index 0000000..c817597
Binary files /dev/null and b/assets/ui/freeplay/difficulties/erect.png differ
diff --git a/assets/ui/freeplay/difficulties/hard.png b/assets/ui/freeplay/difficulties/hard.png
new file mode 100644
index 0000000..938e69f
Binary files /dev/null and b/assets/ui/freeplay/difficulties/hard.png differ
diff --git a/assets/ui/freeplay/difficulties/nightmare.png b/assets/ui/freeplay/difficulties/nightmare.png
new file mode 100644
index 0000000..8c2b630
Binary files /dev/null and b/assets/ui/freeplay/difficulties/nightmare.png differ
diff --git a/assets/ui/freeplay/difficulties/nightmare.xml b/assets/ui/freeplay/difficulties/nightmare.xml
new file mode 100644
index 0000000..f726b07
--- /dev/null
+++ b/assets/ui/freeplay/difficulties/nightmare.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/difficulties/normal.png b/assets/ui/freeplay/difficulties/normal.png
new file mode 100644
index 0000000..f7a6122
Binary files /dev/null and b/assets/ui/freeplay/difficulties/normal.png differ
diff --git a/assets/ui/freeplay/freeplay-boyfriend/Animation.json b/assets/ui/freeplay/freeplay-boyfriend/Animation.json
new file mode 100644
index 0000000..8d5a260
--- /dev/null
+++ b/assets/ui/freeplay/freeplay-boyfriend/Animation.json
@@ -0,0 +1,288026 @@
+{
+"AN": {
+"N": "boyfriend freeplay animations v5",
+"SN": "boyfriend freeplay",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj intro",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ confirm",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": -477.3,
+"y": 153.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 60,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 61,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 62,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 63,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 64,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 65,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 66,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 67,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 68,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 69,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 70,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 71,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 72,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 73,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 75,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 76,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 77,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 78,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 79,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 80,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 81,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 82,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 83,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 84,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 85,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 86,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 87,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 88,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 89,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 90,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 91,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 92,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 93,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 94,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 185,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 95,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 96,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 187,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 97,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 188,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 98,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 189,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 99,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 190,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 100,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 191,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ fist pump",
+"IN": "",
+"ST": "G",
+"FF": 101,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 192,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 193,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 194,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 195,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 196,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 197,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 198,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 199,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 200,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 201,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 202,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 203,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 204,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 205,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 206,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 207,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 208,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 209,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 210,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 211,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 212,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 213,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 214,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 215,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 216,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 217,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 218,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 219,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 220,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 221,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 222,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 223,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 224,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 225,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 226,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 227,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 228,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 229,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 230,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 231,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 232,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 233,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 234,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 235,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 236,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 237,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 238,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 239,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 240,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 241,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 242,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 243,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 244,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 245,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 246,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 247,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 248,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 249,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 250,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 251,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 252,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 60,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 253,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 61,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 254,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 62,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 255,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 63,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 256,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 64,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 257,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 65,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 258,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 66,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 259,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 67,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 260,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 68,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 261,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 69,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 262,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 70,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 263,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 71,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 264,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 72,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 265,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 73,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 266,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 267,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 75,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 268,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 76,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 269,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 77,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 270,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 78,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 271,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 79,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 272,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 80,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 273,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 81,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 274,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 82,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 275,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 83,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 276,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 84,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 277,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 85,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 278,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 86,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 279,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 87,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 280,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 88,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 281,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 89,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 282,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 90,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 283,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 91,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 284,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 92,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 285,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 93,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 286,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 94,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 287,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 95,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 288,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 96,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 289,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 97,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 290,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 98,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 291,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 99,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 292,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 100,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 293,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 101,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 294,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 102,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 295,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 103,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 296,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 104,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 297,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 105,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 298,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 106,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 299,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 107,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 300,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 108,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 301,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 109,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 302,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 110,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 303,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 111,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 304,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 112,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 305,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 113,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 306,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 114,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 307,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 115,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 308,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 116,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 309,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 117,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 310,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 118,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 311,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 119,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 312,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 120,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 313,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 121,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 314,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 122,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 315,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 123,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 316,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 124,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 317,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 125,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 318,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 126,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 319,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 127,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 320,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 128,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 321,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 129,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 322,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 130,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 323,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 131,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 324,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 132,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 325,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 133,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 326,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 134,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 327,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 135,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 328,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 136,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 329,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 137,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 330,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 138,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 331,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 139,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 332,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 140,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 333,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 141,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 334,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 142,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 335,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 143,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 336,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 144,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 337,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 145,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 338,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 146,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 339,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 147,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 340,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 148,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 341,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 149,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 342,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 150,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 343,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 151,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 344,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 152,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 345,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 153,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 346,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 154,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 347,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 155,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 348,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 156,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 349,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 157,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 350,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 158,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 351,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 159,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 352,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 160,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 353,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 161,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 354,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 162,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 355,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 163,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 356,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 164,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 357,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 165,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 358,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 166,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 359,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 167,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 360,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 168,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 361,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 169,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 362,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 170,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 363,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 171,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 364,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 172,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 365,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 173,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 366,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 174,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 367,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 175,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 368,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 176,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 369,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 177,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 370,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 178,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 371,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 179,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 372,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 180,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 373,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 181,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 374,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 182,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 375,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 183,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 376,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 184,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 377,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 185,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 378,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 186,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 379,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 187,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 380,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 188,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 381,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 189,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 382,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 190,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 383,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 191,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 384,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 192,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 385,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 193,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 386,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 194,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 387,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 195,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 388,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ loss reaction 1",
+"IN": "",
+"ST": "G",
+"FF": 196,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 147.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.25,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 389,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 390,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 391,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 392,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 393,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 394,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 395,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 396,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 397,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 398,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 399,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 400,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 401,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 402,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 403,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 404,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 405,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 406,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 407,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 408,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 409,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 410,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 411,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 412,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 413,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 414,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 415,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 416,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 417,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 418,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 419,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 420,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 421,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 422,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 423,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 424,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 425,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 426,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 427,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 428,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 429,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 430,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 431,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 432,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 433,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 434,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 435,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 436,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 437,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 438,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 439,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 440,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 441,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 442,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 443,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 444,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 445,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 446,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 447,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 448,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 449,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 60,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 450,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 61,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 451,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 62,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 452,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 63,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 453,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 64,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 454,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 65,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 455,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 66,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 456,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 67,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 457,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 68,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 458,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 69,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 459,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 70,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 460,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 71,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 461,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 72,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 462,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 73,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 463,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 464,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 75,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 465,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 76,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 466,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 77,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 467,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 78,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 468,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 79,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 469,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 80,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 470,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 81,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 471,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 82,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 472,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 83,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 473,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 84,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 474,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 85,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 475,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 86,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 476,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 87,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 477,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 88,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 478,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 89,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 479,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 90,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 480,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 91,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 481,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 92,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 482,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 93,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 483,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 94,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 484,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 95,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 485,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 96,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 486,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 97,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 487,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 98,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 488,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 99,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 489,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 100,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 490,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 101,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 491,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 102,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 492,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 103,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 493,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 104,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 494,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 105,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 495,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 106,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 496,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 107,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 497,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 108,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 498,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 109,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 499,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 110,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 500,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 111,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 501,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 112,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 502,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 113,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 503,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 114,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 504,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 115,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 505,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 116,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 506,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 117,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 507,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 118,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 508,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 119,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 509,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 120,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 510,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 121,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 511,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 122,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 512,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 123,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 513,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 124,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 514,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 125,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 515,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 126,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 516,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 127,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 517,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 128,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 518,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 129,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 519,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 130,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 520,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 131,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 521,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 132,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 522,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 133,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 523,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 134,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 524,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 135,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 525,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 136,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 526,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 137,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 527,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 138,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 528,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf dj afk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 220.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+-56.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 529,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 530,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 531,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 532,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 533,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 534,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 535,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 536,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 537,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 538,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 539,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 540,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 541,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 542,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 543,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 544,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 545,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 546,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 547,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 548,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 549,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 550,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 551,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 552,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 553,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 554,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 555,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 556,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 557,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 558,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 559,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 560,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 561,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 562,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 563,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 564,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 565,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 566,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 567,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 568,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 569,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 570,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 571,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 572,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 573,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 574,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 575,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 576,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 577,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 578,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 579,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 580,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 581,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 582,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 583,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 584,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 585,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 586,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 587,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 588,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 589,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 590,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 591,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 592,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 593,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 594,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 595,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 596,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 597,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 598,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 599,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 600,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 601,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 602,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 603,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 604,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 605,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 606,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 607,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 608,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 609,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 610,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 611,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 612,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 613,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 614,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 615,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 616,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 617,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 618,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 619,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 620,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 621,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 622,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 623,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 624,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 625,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 626,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 627,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 628,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 629,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 630,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 631,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 632,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 633,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 634,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 635,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 636,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 637,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 638,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 639,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 640,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 641,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 642,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 643,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 644,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 645,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 60,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 646,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 61,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 647,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 62,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 648,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 63,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 649,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 64,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 650,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 65,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 651,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 66,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 652,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 67,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 653,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 68,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 654,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 69,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 655,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 70,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 656,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 71,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 657,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 72,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 658,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 73,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 659,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 660,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 75,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 661,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 76,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 662,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 77,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 663,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 78,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 664,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 79,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 665,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 80,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 666,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 81,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 667,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 82,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 668,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 83,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 669,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 84,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 670,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 85,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 671,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 86,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 672,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 87,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 673,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 88,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 674,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 89,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 675,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 90,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 676,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 91,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 677,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 92,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 678,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 93,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 679,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 94,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 680,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 95,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 681,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 96,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 682,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 97,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 683,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 98,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 684,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 99,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 685,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 100,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 686,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 101,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 687,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 102,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 688,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 103,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 689,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 104,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 690,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 105,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 691,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 106,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 692,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 107,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 693,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 108,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 694,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 109,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 695,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 110,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 696,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 111,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 697,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 112,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 698,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 113,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 699,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 114,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 700,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 115,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 701,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 116,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 702,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 117,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 703,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 118,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 704,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 119,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 705,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 120,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 706,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 121,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 707,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 122,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 708,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 123,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 709,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 124,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 710,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 125,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 711,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 126,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 712,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 127,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 713,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 128,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 714,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 129,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 715,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 130,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 716,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 131,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 717,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 132,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 718,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 133,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 719,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 134,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 720,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 135,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 721,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 136,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 722,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 137,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 723,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 138,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 724,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 139,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 725,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 140,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 726,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 141,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 727,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 142,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 728,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 143,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 729,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 144,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 730,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 145,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 731,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 146,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 732,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 147,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 733,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 148,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 734,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 149,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 735,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 150,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 736,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 151,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 737,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 152,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 738,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 153,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 739,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 154,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 740,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 155,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 741,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 156,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 742,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 157,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 743,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 158,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 744,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 159,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 745,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 160,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 746,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 161,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 747,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 162,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 748,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 163,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 749,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 164,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 750,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 165,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 751,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 166,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 752,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 167,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 753,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 168,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 754,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 169,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 755,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 170,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 756,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 171,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 757,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 172,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 758,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 173,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 759,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 174,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 760,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 175,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 761,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 176,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 762,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 177,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 763,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 178,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 764,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 179,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 765,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 180,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 766,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 181,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 767,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 182,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 768,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ watchin tv OG",
+"IN": "",
+"ST": "G",
+"FF": 183,
+"LP": "LP",
+"TRP": {
+"x": -420.75,
+"y": 144.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 769,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 770,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 771,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 772,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 773,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 774,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 775,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 776,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 777,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 778,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 779,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 780,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 781,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 782,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 783,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 784,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 785,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 786,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 787,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 788,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 789,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 790,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 791,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 792,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 793,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 794,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 795,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 796,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 797,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 798,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 799,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 800,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 801,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 802,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 803,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 804,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 805,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 806,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 807,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 808,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 809,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 810,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 811,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ to CS",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 812,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 813,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 814,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 815,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 816,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 817,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 818,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 819,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 820,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 821,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 822,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 823,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 824,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 825,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 826,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 827,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 828,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 829,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 830,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 831,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 832,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 833,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 834,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 835,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 836,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 837,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 838,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 839,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 840,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 841,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 842,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 843,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 844,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 845,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 846,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 847,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 848,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 849,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 850,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 851,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 852,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 853,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 854,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 855,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 856,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 857,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 858,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 859,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 860,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 861,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 862,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 863,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 864,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 865,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 866,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 867,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 868,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 869,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 870,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 871,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 872,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ new character ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -437.05,
+"y": 126.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.75,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+"SD": {
+"S": [
+{
+"SN": "boyfriend dj intro",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 8,
+"E": []
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm slammed table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 102.25,
+"y": 15.600000000000002
+},
+"M3D": [
+0.9969940185546875,
+-0.0741119384765625,
+0.0,
+0.0,
+0.0741119384765625,
+0.9969940185546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-497.9,
+117.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm slammed table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 109.4,
+"y": 14.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-497.0,
+111.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 5,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 3,
+"E": []
+},
+{
+"I": 3,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend falling",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 163.60000000000003,
+"y": 168.95000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-592.8,
+-499.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend falling",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 163.60000000000003,
+"y": 168.95000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-592.8,
+-257.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm slammed table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 102.35000000000001,
+"y": 15.55
+},
+"M3D": [
+0.970611572265625,
+-0.2304534912109375,
+0.0,
+0.0,
+0.2304534912109375,
+0.970611572265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-481.7,
+139.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head SMOOSHED",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 136.6,
+"y": 79.45
+},
+"M3D": [
+0.996337890625,
+0.0779876708984375,
+0.0,
+0.0,
+-0.0779876708984375,
+0.996337890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.45,
+33.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head less smooshed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 120.60000000000001,
+"y": 105.75
+},
+"M3D": [
+0.9839324951171875,
+-0.17529296875,
+0.0,
+0.0,
+0.17529296875,
+0.9839324951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.85,
+7.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head less smooshed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 117.0,
+"y": 104.5
+},
+"M3D": [
+0.998016357421875,
+-0.0566253662109375,
+0.0,
+0.0,
+0.0566253662109375,
+0.998016357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-580.15,
+-26.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 88.15,
+"y": 97.80000000000001
+},
+"M3D": [
+0.9543304443359375,
+0.2953948974609375,
+0.0,
+0.0,
+-0.2953948974609375,
+0.9543304443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.75,
+-103.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "BF head slight turn",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 160.25,
+"y": 189.3
+},
+"M3D": [
+0.74761962890625,
+-0.022308349609375,
+0.0,
+0.0,
+0.0224609375,
+0.75323486328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-548.3,
+-56.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.3,
+"y": 13.950000000000001
+},
+"M3D": [
+0.99395751953125,
+0.09063720703125,
+0.0,
+0.0,
+-0.09063720703125,
+0.99395751953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-463.3,
+65.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.45,
+"y": 42.25
+},
+"M3D": [
+0.99395751953125,
+0.09063720703125,
+0.0,
+0.0,
+-0.09063720703125,
+0.99395751953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.1,
+-5.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 132.65,
+"y": 14.200000000000001
+},
+"M3D": [
+0.994140625,
+-0.104736328125,
+0.0,
+0.0,
+0.104736328125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.25,
+85.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 88.15,
+"y": 97.80000000000001
+},
+"M3D": [
+0.9543304443359375,
+0.2953948974609375,
+0.0,
+0.0,
+-0.2953948974609375,
+0.9543304443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.75,
+-103.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.300000000000007
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2549285888671875,
+0.965301513671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-496.75,
+17.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 13.85
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2549285888671875,
+0.965301513671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-455.1,
+58.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.10000000000001
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2549285888671875,
+0.965301513671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.8,
+-79.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.2
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2503662109375,
+0.96649169921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-478.7,
+-17.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 132.65,
+"y": 14.200000000000001
+},
+"M3D": [
+0.994140625,
+-0.104736328125,
+0.0,
+0.0,
+0.104736328125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.25,
+85.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 88.15,
+"y": 97.75
+},
+"M3D": [
+0.9543304443359375,
+0.2953948974609375,
+0.0,
+0.0,
+-0.2953948974609375,
+0.9543304443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.75,
+-103.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.3
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2549285888671875,
+0.965301513671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-496.75,
+17.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 13.85
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2549285888671875,
+0.965301513671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-455.1,
+58.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.1
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2549285888671875,
+0.965301513671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.8,
+-79.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.2
+},
+"M3D": [
+0.965301513671875,
+0.2549285888671875,
+0.0,
+0.0,
+-0.2503662109375,
+0.96649169921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-478.7,
+-17.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 132.65,
+"y": 14.2
+},
+"M3D": [
+0.994140625,
+-0.104736328125,
+0.0,
+0.0,
+0.104736328125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.25,
+85.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 88.15,
+"y": 97.80000000000001
+},
+"M3D": [
+0.9543304443359375,
+0.2953948974609375,
+0.0,
+0.0,
+-0.2953948974609375,
+0.9543304443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.75,
+-103.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.300000000000007
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-502.45,
+16.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.3,
+"y": 13.950000000000001
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.3,
+58.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.10000000000001
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.15,
+-81.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.25
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.7,
+-18.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 132.65,
+"y": 14.200000000000001
+},
+"M3D": [
+0.994140625,
+-0.104736328125,
+0.0,
+0.0,
+0.104736328125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.25,
+85.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 88.15,
+"y": 97.80000000000001
+},
+"M3D": [
+0.9543304443359375,
+0.2953948974609375,
+0.0,
+0.0,
+-0.2953948974609375,
+0.9543304443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.75,
+-103.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.300000000000007
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-502.45,
+16.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.3,
+"y": 13.950000000000001
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.3,
+58.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.10000000000001
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.15,
+-81.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.25
+},
+"M3D": [
+0.9618377685546875,
+0.267578125,
+0.0,
+0.0,
+-0.267578125,
+0.9618377685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.7,
+-18.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 132.65,
+"y": 14.200000000000001
+},
+"M3D": [
+0.994140625,
+-0.104736328125,
+0.0,
+0.0,
+0.104736328125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.25,
+85.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_3",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+285.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+288.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+279.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+205.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+208.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+199.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+163.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+166.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+158.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+163.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+166.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+158.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+163.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+155.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+163.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+155.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 203.25,
+"y": 212.3
+},
+"M3D": [
+1.02850341796875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9721527099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.5,
+168.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 78.65,
+"y": 22.6
+},
+"M3D": [
+1.011322021484375,
+-0.1840057373046875,
+0.0,
+0.0,
+0.173919677734375,
+0.955902099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-441.0,
+189.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 71.10000000000001,
+"y": 21.45
+},
+"M3D": [
+0.9873504638671875,
+0.2769775390625,
+0.0,
+0.0,
+-0.276458740234375,
+0.93109130859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-602.05,
+157.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 203.25,
+"y": 212.3
+},
+"M3D": [
+1.02850341796875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9721527099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.5,
+168.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 78.65,
+"y": 22.6
+},
+"M3D": [
+1.011322021484375,
+-0.1840057373046875,
+0.0,
+0.0,
+0.173919677734375,
+0.955902099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-441.0,
+189.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 71.1,
+"y": 21.45
+},
+"M3D": [
+0.9873504638671875,
+0.2769775390625,
+0.0,
+0.0,
+-0.276458740234375,
+0.93109130859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-602.05,
+157.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 21.95
+},
+"M3D": [
+0.9808349609375,
+0.19158935546875,
+0.0,
+0.0,
+-0.19158935546875,
+0.9808349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-433.8,
+148.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 70.7,
+"y": 21.400000000000003
+},
+"M3D": [
+0.99798583984375,
+0.0133056640625,
+0.0,
+0.0,
+-0.0133056640625,
+0.99798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.65,
+161.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 21.95
+},
+"M3D": [
+0.9808349609375,
+0.19158935546875,
+0.0,
+0.0,
+-0.19158935546875,
+0.9808349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-433.8,
+148.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 70.7,
+"y": 21.4
+},
+"M3D": [
+0.99798583984375,
+0.0133056640625,
+0.0,
+0.0,
+-0.0133056640625,
+0.99798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.65,
+161.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 72.7,
+"y": 22.700000000000004
+},
+"M3D": [
+0.9986572265625,
+-0.0484161376953125,
+0.0,
+0.0,
+0.0484161376953125,
+0.9986572265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-440.4,
+168.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 72.9,
+"y": 20.35
+},
+"M3D": [
+0.9806365966796875,
+0.1869354248046875,
+0.0,
+0.0,
+-0.1869354248046875,
+0.9806365966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.75,
+152.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 72.7,
+"y": 22.7
+},
+"M3D": [
+0.9986572265625,
+-0.0484161376953125,
+0.0,
+0.0,
+0.0484161376953125,
+0.9986572265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-440.4,
+168.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 72.9,
+"y": 20.35
+},
+"M3D": [
+0.9806365966796875,
+0.1869354248046875,
+0.0,
+0.0,
+-0.1869354248046875,
+0.9806365966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.75,
+152.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+163.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+155.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+163.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+155.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+163.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+155.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+163.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+155.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-642.65,
+160.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+163.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.4,
+155.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_4",
+"FR": [
+{
+"I": 0,
+"DU": 6,
+"E": []
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.35000000000001,
+"y": 110.9
+},
+"M3D": [
+1.00152587890625,
+-0.200286865234375,
+0.0,
+0.0,
+0.17864990234375,
+0.9601287841796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.05,
+130.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "chest down",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.4,
+"y": 45.400000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-500.2,
+107.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 72.25,
+"y": 6.75
+},
+"M3D": [
+0.991058349609375,
+-0.11724853515625,
+0.0,
+0.0,
+0.11724853515625,
+0.991058349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-596.05,
+111.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "chest down",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.35,
+"y": 45.400000000000009
+},
+"M3D": [
+0.99578857421875,
+0.087982177734375,
+0.0,
+0.0,
+-0.087982177734375,
+0.99578857421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.05,
+94.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.65,
+"y": 54.300000000000007
+},
+"M3D": [
+0.818450927734375,
+0.57080078125,
+0.0,
+0.0,
+-0.57080078125,
+0.818450927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-586.0,
+26.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "body chest out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 61.800000000000007,
+"y": 55.800000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-520.8,
+88.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chest out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 61.85,
+"y": 108.65
+},
+"M3D": [
+0.9995574951171875,
+0.0208587646484375,
+0.0,
+0.0,
+-0.0208587646484375,
+0.9995574951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.95,
+88.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chest out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 61.85,
+"y": 108.65
+},
+"M3D": [
+0.9995574951171875,
+0.0208587646484375,
+0.0,
+0.0,
+-0.0208587646484375,
+0.9995574951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.95,
+88.7,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm slammed table",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0000",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "boyfriend falling",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0001",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head SMOOSHED",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0002",
+"M3D": [
+0.9415130615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9415130615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head less smooshed",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0003",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+3.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "rave hand",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 114.95,
+"y": 76.3
+},
+"M3D": [
+0.999847412109375,
+-0.0137939453125,
+0.0,
+0.0,
+0.0137939453125,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-8.65,
+15.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.95,
+"y": 44.75
+},
+"M3D": [
+0.99261474609375,
+-0.117919921875,
+0.0,
+0.0,
+0.2176513671875,
+0.98077392578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-14.85,
+24.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 120.95,
+"y": 85.25
+},
+"M3D": [
+0.997528076171875,
+0.0668792724609375,
+0.0,
+0.0,
+-0.0668792724609375,
+0.997528076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.4,
+-4.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.400000000000009,
+"y": 101.05
+},
+"M3D": [
+0.998443603515625,
+-0.05242919921875,
+0.0,
+0.0,
+0.05242919921875,
+0.998443603515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+53.2,
+0.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.900000000000009,
+"y": 54.050000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+62.45,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 4,
+"E": [
+{
+"SI": {
+"SN": "hand in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.900000000000009,
+"y": 101.05
+},
+"M3D": [
+0.9995574951171875,
+0.026611328125,
+0.0,
+0.0,
+-0.026611328125,
+0.9995574951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+65.15,
+2.55,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand out",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0013",
+"M3D": [
+0.8490142822265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8490142822265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand in",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0014",
+"M3D": [
+0.8529510498046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8529510498046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "BF head slight turn",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0004",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf mouth 1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0005",
+"M3D": [
+0.850830078125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.850830078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf eyes 1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0006",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "DJ arm",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "dj arm out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 89.75,
+"y": 70.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-41.05,
+3.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "dj arm out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 89.75,
+"y": 70.0
+},
+"M3D": [
+0.999755859375,
+0.0183563232421875,
+0.0,
+0.0,
+-0.0183563232421875,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-36.25,
+2.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "dj arm out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 89.75,
+"y": 70.0
+},
+"M3D": [
+0.9986419677734375,
+-0.0488739013671875,
+0.0,
+0.0,
+0.0488739013671875,
+0.9986419677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-35.35,
+10.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "dj arm in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 133.9,
+"y": 7.05
+},
+"M3D": [
+0.99920654296875,
+-0.036102294921875,
+0.0,
+0.0,
+0.0046234130859375,
+1.0003662109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+1.55,
+4.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "dj arm in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 131.35,
+"y": 11.55
+},
+"M3D": [
+0.999755859375,
+-0.0184173583984375,
+0.0,
+0.0,
+0.01025390625,
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+1.4,
+2.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 4,
+"E": [
+{
+"SI": {
+"SN": "dj arm in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 77.9,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+1.45,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "dj arm out",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0015",
+"M3D": [
+0.9140472412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9140472412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "dj arm in",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0016",
+"M3D": [
+0.9136810302734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9136810302734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "boyfriend bottom head",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0007",
+"M3D": [
+0.9860687255859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9860687255859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "boyfriend top head",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0008",
+"M3D": [
+0.9860687255859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9860687255859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "turn table",
+"TL": {
+"L": [
+{
+"LN": "turntable_lights_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 14,
+"E": [
+{
+"SI": {
+"SN": "turntable lights",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 9.0,
+"BLY": 9.0,
+"Q": 3
+}
+}
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 14,
+"E": [
+{
+"ASI": {
+"N": "0018",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 48.300000000000007,
+"y": 25.700000000000004
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table lights",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 48.3,
+"y": 25.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.85,
+12.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "turntable lights",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0017",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.9,
+12.6,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "turn table lights",
+"TL": {
+"L": [
+{
+"LN": "left",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 21.900000000000003,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 21.9,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 21.900000000000003,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 21.9,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 21.900000000000003,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 21.9,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 21.900000000000003,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 21.9,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 21.9,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 21.9,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "SF",
+"TRP": {
+"x": 21.900000000000003,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights0",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "SF",
+"TRP": {
+"x": 21.9,
+"y": 24.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.5,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "middle",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "SF",
+"TRP": {
+"x": 10.35,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+33.4,
+0.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "right",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "tt lights2",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "SF",
+"TRP": {
+"x": 20.55,
+"y": 25.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.5,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "tt lights0",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0019",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0020",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0021",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0022",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0023",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "tt lights1",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0024",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0025",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0026",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0027",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0028",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "tt lights2",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0029",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0030",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0031",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0032",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0033",
+"M3D": [
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9722747802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "spinning disk",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0034",
+"M3D": [
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+27.2,
+3.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0035",
+"M3D": [
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+24.3,
+2.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0036",
+"M3D": [
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+30.15,
+2.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0037",
+"M3D": [
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.1,
+2.9,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 8,
+"E": [
+{
+"ASI": {
+"N": "0038",
+"M3D": [
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.972808837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+5.8,
+-0.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "boyfriend dj body",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0009",
+"M3D": [
+0.868072509765625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.868072509765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "chest down",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0010",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm swoopin in",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0011",
+"M3D": [
+0.7397308349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7397308349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body chest out",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0012",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "Boyfriend DJ",
+"TL": {
+"L": [
+{
+"LN": "bf_face",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.25
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.7,
+23.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.25
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-542.5,
+25.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.75,
+25.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.2
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-527.45,
+7.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.9,
+74.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 5,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.5,
+3.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.45,
+71.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.5,
+3.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.45,
+71.2,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_top_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-594.75,
+-23.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.35,
+-18.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.15
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.75,
+-17.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-575.9,
+-43.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 5,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.8,
+-48.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.8,
+-48.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_arms",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_4",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 13.85
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-492.05,
+85.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.400000000000003,
+"y": 13.9
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-490.4,
+86.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 13.9
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.0,
+84.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 8,
+"E": []
+}
+]
+},
+{
+"LN": "bf_bottom_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.35
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.9,
+62.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.15,
+65.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.35,
+65.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.4
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.4,
+46.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 5,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.3,
+42.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.3,
+42.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "turntable",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_body",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.35000000000001,
+"y": 110.9
+},
+"M3D": [
+1.021728515625,
+0.0269317626953125,
+0.0,
+0.0,
+-0.0388336181640625,
+0.9765472412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.95,
+80.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.25,
+"y": 110.9
+},
+"M3D": [
+1.0220184326171876,
+0.00921630859375,
+0.0,
+0.0,
+-0.022216796875,
+0.9910888671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-604.3,
+81.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.25,
+"y": 110.80000000000001
+},
+"M3D": [
+1.02197265625,
+-0.0048065185546875,
+0.0,
+0.0,
+-0.0087738037109375,
+1.0091400146484376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-607.4,
+79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 7,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.25,
+77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.25,
+77.5,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "Boyfriend DJ confirm",
+"TL": {
+"L": [
+{
+"LN": "Layer_12",
+"FR": [
+{
+"I": 0,
+"DU": 8,
+"E": []
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf 1 finger hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 15.05,
+"y": 88.25
+},
+"M3D": [
+0.6124267578125,
+0.785400390625,
+0.0,
+0.0,
+-0.785400390625,
+0.6124267578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-365.65,
+54.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf 1 finger hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.0,
+"y": 88.05
+},
+"M3D": [
+0.9993896484375,
+0.0132598876953125,
+0.0,
+0.0,
+-0.0132598876953125,
+0.9993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-435.5,
+42.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf 1 finger hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.0,
+"y": 88.05
+},
+"M3D": [
+0.9993896484375,
+0.0132598876953125,
+0.0,
+0.0,
+-0.0132598876953125,
+0.9993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.3,
+42.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 19,
+"E": [
+{
+"SI": {
+"SN": "bf 1 finger hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 39.550000000000007,
+"y": 49.6
+},
+"M3D": [
+0.99627685546875,
+0.0829925537109375,
+0.0,
+0.0,
+-0.0829925537109375,
+0.99627685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-431.2,
+43.6,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_10",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "dj arm out",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 170.65,
+"y": 11.700000000000001
+},
+"M3D": [
+0.91461181640625,
+0.1473388671875,
+0.0,
+0.0,
+-0.149566650390625,
+0.9285736083984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-614.55,
+75.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm spun",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 140.4,
+"y": 41.85
+},
+"M3D": [
+0.9782562255859375,
+-0.203460693359375,
+0.0,
+0.0,
+0.203460693359375,
+0.9782562255859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-619.65,
+108.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm spun",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 147.05,
+"y": 43.550000000000007
+},
+"M3D": [
+0.9808197021484375,
+0.19073486328125,
+0.0,
+0.0,
+-0.19073486328125,
+0.9808197021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.7,
+52.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm spun",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.95000000000003,
+"y": 43.550000000000007
+},
+"M3D": [
+0.8699798583984375,
+0.487823486328125,
+0.0,
+0.0,
+-0.487823486328125,
+0.8699798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.4,
+15.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm spun",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 77.80000000000001,
+"y": 48.7
+},
+"M3D": [
+0.9759979248046875,
+0.21356201171875,
+0.0,
+0.0,
+-0.21356201171875,
+0.9759979248046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.65,
+37.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "shoulder",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.1,
+"y": 33.5
+},
+"M3D": [
+0.966156005859375,
+0.2545166015625,
+0.0,
+0.0,
+-0.2545166015625,
+0.966156005859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-437.0,
+61.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm backing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 32.5,
+"y": 25.55
+},
+"M3D": [
+0.946319580078125,
+0.30914306640625,
+0.0,
+0.0,
+-0.30914306640625,
+0.946319580078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-458.6,
+90.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf arm peace",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 126.55,
+"y": 64.5
+},
+"M3D": [
+0.9952392578125,
+0.0937347412109375,
+0.0,
+0.0,
+-0.0937347412109375,
+0.9952392578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.2,
+37.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "shoulder",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.15,
+"y": 33.55
+},
+"M3D": [
+0.98223876953125,
+0.183837890625,
+0.0,
+0.0,
+-0.183837890625,
+0.98223876953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-440.65,
+64.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm backing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 32.45,
+"y": 25.55
+},
+"M3D": [
+0.9948577880859375,
+0.0557708740234375,
+0.0,
+0.0,
+-0.0557708740234375,
+0.9948577880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.3,
+95.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf arm peace",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 125.55,
+"y": 66.2
+},
+"M3D": [
+0.999908447265625,
+-0.009796142578125,
+0.0,
+0.0,
+0.009796142578125,
+0.999908447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-542.05,
+51.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 18,
+"E": [
+{
+"SI": {
+"SN": "shoulder",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.1,
+"y": 33.5
+},
+"M3D": [
+0.980438232421875,
+0.193450927734375,
+0.0,
+0.0,
+-0.193450927734375,
+0.980438232421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-440.45,
+63.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm backing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 32.45,
+"y": 25.55
+},
+"M3D": [
+0.9948577880859375,
+0.0557708740234375,
+0.0,
+0.0,
+-0.0557708740234375,
+0.9948577880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.3,
+95.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf arm peace",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 64.15,
+"y": 57.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.75,
+50.1,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_13",
+"FR": [
+{
+"I": 0,
+"DU": 8,
+"E": []
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0044",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-430.0,
+72.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 20,
+"E": [
+{
+"ASI": {
+"N": "0045",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-433.0,
+75.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_face",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "eye squit",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 58.1,
+"y": 53.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-598.1,
+7.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "bf smile eyes closed face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 56.5
+},
+"M3D": [
+0.9971923828125,
+-0.0712890625,
+0.0,
+0.0,
+0.0712890625,
+0.9971923828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.55,
+9.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf smile eyes closed face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 56.550000000000007
+},
+"M3D": [
+0.995269775390625,
+-0.093597412109375,
+0.0,
+0.0,
+0.093597412109375,
+0.995269775390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-593.5,
+10.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.2
+},
+"M3D": [
+0.957763671875,
+-0.282379150390625,
+0.0,
+0.0,
+0.282379150390625,
+0.957763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-575.9,
+47.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.400000000000003,
+"y": 13.9
+},
+"M3D": [
+0.957763671875,
+-0.282379150390625,
+0.0,
+0.0,
+0.282379150390625,
+0.957763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.5,
+100.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0048",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-498.0,
+11.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.400000000000003,
+"y": 13.85
+},
+"M3D": [
+0.99810791015625,
+0.05792236328125,
+0.0,
+0.0,
+-0.05792236328125,
+0.99810791015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-459.15,
+71.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-505.75,
+5.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-463.7,
+73.2,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_top_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.70000000000003,
+"y": 70.15
+},
+"M3D": [
+0.9713134765625,
+-0.23175048828125,
+0.0,
+0.0,
+0.23175048828125,
+0.9713134765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-656.8,
+-2.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.75,
+"y": 70.2
+},
+"M3D": [
+0.9403076171875,
+-0.33685302734375,
+0.0,
+0.0,
+0.33685302734375,
+0.9403076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-659.85,
+14.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.75,
+"y": 70.2
+},
+"M3D": [
+0.9340667724609375,
+-0.3536376953125,
+0.0,
+0.0,
+0.3536376953125,
+0.9340667724609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-652.6,
+16.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.75,
+"y": 70.25
+},
+"M3D": [
+0.957763671875,
+-0.282379150390625,
+0.0,
+0.0,
+0.282379150390625,
+0.957763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-635.95,
+10.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "BF head slight turn",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 160.25,
+"y": 189.25
+},
+"M3D": [
+0.74786376953125,
+-0.0296478271484375,
+0.0,
+0.0,
+0.0298614501953125,
+0.7534637451171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-550.4,
+-46.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.05,
+-46.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_11",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.7,
+"y": 54.300000000000007
+},
+"M3D": [
+0.993896484375,
+0.1053314208984375,
+0.0,
+0.0,
+-0.1053314208984375,
+0.993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-678.3,
+26.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.800000000000007,
+"y": 54.300000000000007
+},
+"M3D": [
+0.98944091796875,
+0.140380859375,
+0.0,
+0.0,
+-0.140380859375,
+0.98944091796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-675.55,
+30.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.800000000000007,
+"y": 54.300000000000007
+},
+"M3D": [
+0.9163818359375,
+0.3963623046875,
+0.0,
+0.0,
+-0.3963623046875,
+0.9163818359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-655.7,
+32.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 80.15,
+"y": -7.45
+},
+"M3D": [
+0.860870361328125,
+-0.501739501953125,
+0.0,
+0.0,
+0.501739501953125,
+0.860870361328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-617.6,
+125.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 22,
+"E": []
+}
+]
+},
+{
+"LN": "bf_bottom_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.35
+},
+"M3D": [
+0.9713134765625,
+-0.23175048828125,
+0.0,
+0.0,
+0.23175048828125,
+0.9713134765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-598.35,
+76.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.35
+},
+"M3D": [
+0.9403076171875,
+-0.33685302734375,
+0.0,
+0.0,
+0.33685302734375,
+0.9403076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-592.95,
+86.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.35
+},
+"M3D": [
+0.9403076171875,
+-0.33685302734375,
+0.0,
+0.0,
+0.33685302734375,
+0.9403076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-590.15,
+86.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.35
+},
+"M3D": [
+0.9403076171875,
+-0.33685302734375,
+0.0,
+0.0,
+0.33685302734375,
+0.9403076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-588.15,
+86.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": []
+},
+{
+"I": 10,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.55,
+44.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9925537109375,
+0.135223388671875,
+0.0,
+0.0,
+-0.11114501953125,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9925537109375,
+0.135223388671875,
+0.0,
+0.0,
+-0.11114501953125,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.02435302734375,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-451.55,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.02435302734375,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-451.55,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "turntable",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.02435302734375,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-654.9,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.02435302734375,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-654.9,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_body",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 138.4,
+"y": 235.05
+},
+"M3D": [
+0.8428955078125,
+-0.5743408203125,
+0.0,
+0.0,
+0.538330078125,
+0.813232421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-639.4,
+186.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 138.45000000000003,
+"y": 235.05
+},
+"M3D": [
+0.85797119140625,
+-0.551361083984375,
+0.0,
+0.0,
+0.51617431640625,
+0.8273773193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-635.35,
+180.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 138.45000000000003,
+"y": 235.10000000000003
+},
+"M3D": [
+0.876678466796875,
+-0.5208740234375,
+0.0,
+0.0,
+0.4868011474609375,
+0.8448486328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-632.0,
+171.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 138.5,
+"y": 235.15
+},
+"M3D": [
+1.0914306640625,
+-0.3684539794921875,
+0.0,
+0.0,
+0.383697509765625,
+0.8959197998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-641.3,
+150.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 100.0,
+"y": 203.65
+},
+"M3D": [
+0.98785400390625,
+-0.15118408203125,
+0.0,
+0.0,
+0.15118408203125,
+0.98785400390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-595.4,
+101.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.4,
+"y": 111.0
+},
+"M3D": [
+0.984893798828125,
+-0.169921875,
+0.0,
+0.0,
+0.169921875,
+0.984893798828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-598.9,
+103.75,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf 1 finger hand",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0039",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm spun",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0040",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shoulder",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0041",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm backing",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0042",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf arm peace",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0043",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "eye squit",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0046",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf smile eyes closed face",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0047",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "Boyfriend DJ fist pump",
+"TL": {
+"L": [
+{
+"LN": "bf_face",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.550000000000007,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.550000000000007,
+"y": 41.550000000000007
+},
+"M3D": [
+0.9908447265625,
+-0.131439208984375,
+0.0,
+0.0,
+0.131439208984375,
+0.9908447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-507.75,
+39.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 51.35,
+"y": 171.25
+},
+"M3D": [
+0.998504638671875,
+0.042877197265625,
+0.0,
+0.0,
+-0.042877197265625,
+0.998504638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.8,
+-82.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 51.35,
+"y": 171.25
+},
+"M3D": [
+0.998504638671875,
+0.042877197265625,
+0.0,
+0.0,
+-0.042877197265625,
+0.998504638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.8,
+-82.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf fist pump arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.1,
+"y": 87.95
+},
+"M3D": [
+0.994140625,
+0.104766845703125,
+0.0,
+0.0,
+-0.104766845703125,
+0.994140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.85,
+-77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.25
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.7,
+23.5,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_top_head",
+"FR": [
+{
+"I": 0,
+"DU": 45,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.968597412109375,
+-0.245361328125,
+0.0,
+0.0,
+0.245361328125,
+0.968597412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-588.85,
+-4.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.927490234375,
+-0.37042236328125,
+0.0,
+0.0,
+0.37042236328125,
+0.927490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.05,
+10.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+0.9983978271484375,
+-0.05316162109375,
+0.0,
+0.0,
+0.05316162109375,
+0.9983978271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.0,
+13.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0049",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.0,
+8.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fist pump face",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.25,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.65,
+11.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-594.75,
+-23.1,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_arms",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.7
+},
+"M3D": [
+0.95758056640625,
+0.28118896484375,
+0.0,
+0.0,
+-0.28118896484375,
+0.95758056640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-409.9,
+55.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "SF",
+"TRP": {
+"x": 57.75,
+"y": 44.400000000000009
+},
+"M3D": [
+0.84527587890625,
+-0.53009033203125,
+0.0,
+0.0,
+0.53009033203125,
+0.84527587890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-661.65,
+28.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+0.8865966796875,
+-0.4591522216796875,
+0.0,
+0.0,
+0.4591522216796875,
+0.8865966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.1,
+108.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.85,
+"y": 125.55
+},
+"M3D": [
+0.7400360107421875,
+-0.223541259765625,
+0.0,
+0.0,
+0.223541259765625,
+0.7400360107421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-626.45,
+-11.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.85,
+"y": 125.55
+},
+"M3D": [
+0.7400360107421875,
+-0.223541259765625,
+0.0,
+0.0,
+0.223541259765625,
+0.7400360107421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-626.45,
+-11.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 166.9,
+"y": 125.55
+},
+"M3D": [
+0.7510223388671875,
+-0.18389892578125,
+0.0,
+0.0,
+0.18389892578125,
+0.7510223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-615.75,
+-17.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_4",
+"FR": [
+{
+"I": 0,
+"DU": 102,
+"E": []
+},
+{
+"I": 102,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 13.85
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-492.05,
+85.9,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_bottom_head",
+"FR": [
+{
+"I": 0,
+"DU": 45,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.968597412109375,
+-0.245361328125,
+0.0,
+0.0,
+0.245361328125,
+0.968597412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-529.15,
+74.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.5
+},
+"M3D": [
+0.927490234375,
+-0.37042236328125,
+0.0,
+0.0,
+0.37042236328125,
+0.927490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-527.6,
+80.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 56,
+"E": []
+},
+{
+"I": 102,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.35
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.9,
+62.85,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "turntable",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_body",
+"FR": [
+{
+"I": 0,
+"DU": 45,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.35000000000001,
+"y": 110.9
+},
+"M3D": [
+1.02197265625,
+-0.004608154296875,
+0.0,
+0.0,
+-0.0086822509765625,
+0.9771728515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-580.3,
+84.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 125.60000000000001,
+"y": 181.4
+},
+"M3D": [
+1.0201416015625,
+-0.0582427978515625,
+0.0,
+0.0,
+0.0426177978515625,
+0.9761199951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-584.4,
+91.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.9988250732421875,
+-0.04541015625,
+0.0,
+0.0,
+0.04541015625,
+0.9988250732421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-585.6,
+84.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.9988250732421875,
+-0.04541015625,
+0.0,
+0.0,
+0.04541015625,
+0.9988250732421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-585.6,
+84.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 127.9,
+"y": 99.5
+},
+"M3D": [
+0.999542236328125,
+-0.027191162109375,
+0.0,
+0.0,
+0.027191162109375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.3,
+85.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.35000000000001,
+"y": 110.9
+},
+"M3D": [
+1.021728515625,
+0.0269317626953125,
+0.0,
+0.0,
+-0.0388336181640625,
+0.9765472412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.95,
+80.75,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_11",
+"FR": [
+{
+"I": 0,
+"DU": 46,
+"E": []
+},
+{
+"I": 46,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "shirt sleeve",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 14.4,
+"y": 8.9
+},
+"M3D": [
+0.9516448974609375,
+-0.3037567138671875,
+0.0,
+0.0,
+0.3037567138671875,
+0.9516448974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-500.25,
+98.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "clenched fist",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 39.1,
+"y": 35.25
+},
+"M3D": [
+0.999053955078125,
+-0.014862060546875,
+0.0,
+0.0,
+0.014862060546875,
+0.999053955078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-569.1,
+116.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 54,
+"E": [
+{
+"SI": {
+"SN": "shirt sleeve",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 20.0,
+"y": 22.95
+},
+"M3D": [
+0.987701416015625,
+-0.153106689453125,
+0.0,
+0.0,
+0.153106689453125,
+0.987701416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-496.4,
+98.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "clenched fist",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 39.15,
+"y": 35.300000000000007
+},
+"M3D": [
+0.9930419921875,
+-0.114501953125,
+0.0,
+0.0,
+0.114501953125,
+0.9930419921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.05,
+116.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 3,
+"E": []
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf clenched face",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0053",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0054",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0055",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf fist pump arm",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0056",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0057",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0058",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "fist pump face",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 8,
+"E": [
+{
+"ASI": {
+"N": "0059",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+2.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf bent arm",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0050",
+"M3D": [
+0.931976318359375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.931976318359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "fist shaking",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched fist",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.35,
+"y": 44.45
+},
+"M3D": [
+0.95135498046875,
+0.3013916015625,
+0.0,
+0.0,
+-0.3013916015625,
+0.95135498046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+27.05,
+-1.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched fist",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.400000000000009,
+"y": 44.45
+},
+"M3D": [
+0.94580078125,
+0.31817626953125,
+0.0,
+0.0,
+-0.31817626953125,
+0.94580078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+27.75,
+-1.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched fist",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.400000000000009,
+"y": 44.5
+},
+"M3D": [
+0.9576416015625,
+0.280487060546875,
+0.0,
+0.0,
+-0.280487060546875,
+0.9576416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+25.8,
+-1.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf clenched fist",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0060",
+"M3D": [
+0.945892333984375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.945892333984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.9,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "BF Head defalt HAIR BLOWING",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hb1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 122.35000000000001,
+"y": 77.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+29.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hb2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.60000000000001,
+"y": 78.35000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+1.1,
+24.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hb3",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.5,
+"y": 77.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-4.35,
+26.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hb4",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 125.80000000000001,
+"y": 77.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-4.85,
+23.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 4,
+"E": [
+{
+"ASI": {
+"N": "0065",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+45.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hb1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0061",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hb2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0062",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hb3",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0063",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hb4",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0064",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "boyfriend dj body shirt blowing",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0066",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+56.0,
+-16.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0067",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+64.0,
+-16.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0068",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+58.0,
+-18.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 3,
+"E": [
+{
+"ASI": {
+"N": "0069",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+17.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shirt sleeve",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0051",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "clenched fist",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0052",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "Boyfriend DJ loss reaction 1",
+"TL": {
+"L": [
+{
+"LN": "Layer_12",
+"FR": [
+{
+"I": 0,
+"DU": 32,
+"E": []
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.2,
+"y": 48.7
+},
+"M3D": [
+0.649871826171875,
+0.754974365234375,
+0.0,
+0.0,
+-0.754974365234375,
+0.649871826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.15,
+53.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.7,
+"y": 55.0
+},
+"M3D": [
+0.81201171875,
+0.5755615234375,
+0.0,
+0.0,
+-0.5755615234375,
+0.81201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-492.8,
+26.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 87.80000000000001,
+"y": 53.45
+},
+"M3D": [
+0.999176025390625,
+0.0262451171875,
+0.0,
+0.0,
+-0.0262451171875,
+0.999176025390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-458.15,
+102.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 59.0
+},
+"M3D": [
+0.9998779296875,
+-0.0004730224609375,
+0.0,
+0.0,
+0.0004730224609375,
+0.9998779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-465.05,
+103.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 34,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.35,
+"y": 43.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.15,
+103.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.400000000000009,
+"y": 43.0
+},
+"M3D": [
+0.999664306640625,
+0.0225982666015625,
+0.0,
+0.0,
+-0.0225982666015625,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.25,
+102.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 85.60000000000001,
+"y": 50.7
+},
+"M3D": [
+0.9994964599609375,
+0.02203369140625,
+0.0,
+0.0,
+-0.02203369140625,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.8,
+101.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 85.65,
+"y": 50.65
+},
+"M3D": [
+0.99798583984375,
+0.0438385009765625,
+0.0,
+0.0,
+-0.0438385009765625,
+0.99798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-465.8,
+97.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 85.7,
+"y": 50.75
+},
+"M3D": [
+0.9935302734375,
+-0.09197998046875,
+0.0,
+0.0,
+0.09197998046875,
+0.9935302734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-465.0,
+96.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hand open cringe",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 85.60000000000001,
+"y": 50.75
+},
+"M3D": [
+0.99530029296875,
+0.0447998046875,
+0.0,
+0.0,
+-0.0447998046875,
+0.99530029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.35,
+43.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "smile mouth",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.95,
+"y": 14.75
+},
+"M3D": [
+1.0166015625,
+0.022216796875,
+0.0,
+0.0,
+-0.0218505859375,
+0.9996795654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.05,
+78.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "smile mouth",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.900000000000009,
+"y": 14.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-491.1,
+78.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 19,
+"E": [
+{
+"SI": {
+"SN": "smile mouth",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.900000000000009,
+"y": 14.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-489.5,
+78.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "smile mouth",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.900000000000009,
+"y": 14.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0677947998046876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-489.5,
+77.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "smile mouth",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 44.900000000000009,
+"y": 14.75
+},
+"M3D": [
+0.9331512451171875,
+0.0361175537109375,
+0.0,
+0.0,
+0.0,
+1.1802825927734376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-486.5,
+73.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "mouth open shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.3,
+"y": 19.55
+},
+"M3D": [
+1.034423828125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.923858642578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-478.55,
+82.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 66,
+"E": [
+{
+"SI": {
+"SN": "mouth open shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 19.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-477.5,
+80.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "mouth open shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.400000000000003,
+"y": 19.55
+},
+"M3D": [
+0.999542236328125,
+0.027099609375,
+0.0,
+0.0,
+-0.027099609375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-479.05,
+80.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "mouth open shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.25,
+"y": 19.5
+},
+"M3D": [
+0.9971923828125,
+0.06640625,
+0.0,
+0.0,
+-0.13385009765625,
+0.78985595703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.15,
+88.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 11,
+"E": []
+}
+]
+},
+{
+"LN": "bf_face",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.550000000000007,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.0,
+35.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 3,
+"E": []
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.050000000000007,
+"y": 38.400000000000009
+},
+"M3D": [
+0.980133056640625,
+0.19512939453125,
+0.0,
+0.0,
+-0.2306976318359375,
+1.1588134765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.6,
+12.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.95,
+"y": 38.400000000000009
+},
+"M3D": [
+0.9976043701171875,
+-0.0660400390625,
+0.0,
+0.0,
+0.0660400390625,
+0.9976043701171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.9,
+57.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.95,
+"y": 38.4
+},
+"M3D": [
+0.9976043701171875,
+-0.0660400390625,
+0.0,
+0.0,
+0.0660400390625,
+0.9976043701171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.9,
+57.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 40.95,
+"y": 38.4
+},
+"M3D": [
+0.9976043701171875,
+-0.0660400390625,
+0.0,
+0.0,
+0.0660400390625,
+0.9976043701171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.9,
+57.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.050000000000007,
+"y": 38.45
+},
+"M3D": [
+0.9999237060546875,
+-0.00946044921875,
+0.0,
+0.0,
+0.00946044921875,
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.45,
+46.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 41.05,
+"y": 38.45
+},
+"M3D": [
+0.9999237060546875,
+-0.00946044921875,
+0.0,
+0.0,
+0.00946044921875,
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.45,
+46.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 41.05,
+"y": 38.45
+},
+"M3D": [
+0.9999237060546875,
+-0.00946044921875,
+0.0,
+0.0,
+0.00946044921875,
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.45,
+46.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.400000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.55,
+44.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 40.95,
+"y": 38.45
+},
+"M3D": [
+0.999420166015625,
+-0.0307159423828125,
+0.0,
+0.0,
+0.0307159423828125,
+0.999420166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.3,
+46.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 40.95,
+"y": 38.45
+},
+"M3D": [
+0.999420166015625,
+-0.0307159423828125,
+0.0,
+0.0,
+0.0307159423828125,
+0.999420166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.3,
+46.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 40.95,
+"y": 38.45
+},
+"M3D": [
+0.999420166015625,
+-0.0307159423828125,
+0.0,
+0.0,
+0.0307159423828125,
+0.999420166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.3,
+46.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.35
+},
+"M3D": [
+0.999847412109375,
+-0.0137481689453125,
+0.0,
+0.0,
+0.0137481689453125,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.45,
+44.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.35
+},
+"M3D": [
+0.999847412109375,
+-0.0137481689453125,
+0.0,
+0.0,
+0.0137481689453125,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.45,
+44.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.35
+},
+"M3D": [
+0.999847412109375,
+-0.0137481689453125,
+0.0,
+0.0,
+0.0137481689453125,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.45,
+44.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.400000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.75,
+43.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.75,
+43.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 38.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.75,
+43.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 41.050000000000007,
+"y": 38.400000000000009
+},
+"M3D": [
+0.9808349609375,
+0.038970947265625,
+0.0,
+0.0,
+-0.0396881103515625,
+0.9990692138671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-498.15,
+42.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 41.05,
+"y": 38.4
+},
+"M3D": [
+0.9808349609375,
+0.038970947265625,
+0.0,
+0.0,
+-0.0396881103515625,
+0.9990692138671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-498.15,
+42.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face scared lip1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 41.050000000000007,
+"y": 38.400000000000009
+},
+"M3D": [
+0.966461181640625,
+0.00946044921875,
+0.0,
+0.0,
+-0.0097808837890625,
+0.999908447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-495.85,
+45.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "blush",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.7,
+"y": 14.950000000000001
+},
+"M3D": [
+1.0166015625,
+0.022216796875,
+0.0,
+0.0,
+-0.0218505859375,
+0.9996795654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-506.6,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.75,
+"y": 47.0
+},
+"M3D": [
+1.0166015625,
+0.022216796875,
+0.0,
+0.0,
+-0.0218505859375,
+0.9996795654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-497.15,
+-3.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "blush",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.7,
+"y": 15.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-498.8,
+66.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.7,
+"y": 47.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-491.0,
+-4.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 23,
+"E": [
+{
+"SI": {
+"SN": "blush",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.7,
+"y": 15.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-497.2,
+66.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.7,
+"y": 47.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-489.4,
+-4.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 68,
+"E": [
+{
+"SI": {
+"SN": "blush",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.7,
+"y": 15.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-497.2,
+68.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.7,
+"y": 47.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-489.4,
+-6.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "blush",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.7,
+"y": 15.0
+},
+"M3D": [
+0.999542236328125,
+0.027099609375,
+0.0,
+0.0,
+-0.027099609375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-498.35,
+68.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.75,
+"y": 47.0
+},
+"M3D": [
+0.999542236328125,
+0.027099609375,
+0.0,
+0.0,
+-0.027099609375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-489.4,
+-6.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "blush",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.7,
+"y": 15.0
+},
+"M3D": [
+0.9971923828125,
+0.06640625,
+0.0,
+0.0,
+-0.06640625,
+0.9971923828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-505.95,
+73.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes shy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.7,
+"y": 47.1
+},
+"M3D": [
+0.9971923828125,
+0.06640625,
+0.0,
+0.0,
+-0.0618896484375,
+0.9293212890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-493.55,
+4.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 11,
+"E": []
+}
+]
+},
+{
+"LN": "bf_top_head",
+"FR": [
+{
+"I": 0,
+"DU": 29,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.968597412109375,
+-0.245361328125,
+0.0,
+0.0,
+0.245361328125,
+0.968597412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-588.85,
+-4.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 3,
+"E": []
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.9732666015625,
+0.21929931640625,
+0.0,
+0.0,
+-0.21929931640625,
+0.9732666015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.95,
+-75.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.25
+},
+"M3D": [
+0.99725341796875,
+-0.0408782958984375,
+0.0,
+0.0,
+0.0408782958984375,
+0.99725341796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-580.85,
+-27.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.15
+},
+"M3D": [
+0.9981536865234375,
+0.015625,
+0.0,
+0.0,
+-0.015625,
+0.9981536865234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-570.5,
+-41.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 34,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.99798583984375,
+0.0250701904296875,
+0.0,
+0.0,
+-0.0250701904296875,
+0.99798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.8,
+-43.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9981689453125,
+-0.0055999755859375,
+0.0,
+0.0,
+0.0055999755859375,
+0.9981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-571.25,
+-40.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+0.9981689453125,
+0.0113525390625,
+0.0,
+0.0,
+-0.0113525390625,
+0.9981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-569.9,
+-43.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.99798583984375,
+0.0250701904296875,
+0.0,
+0.0,
+-0.0250701904296875,
+0.99798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.8,
+-45.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.75,
+"y": 70.15
+},
+"M3D": [
+0.9719696044921875,
+0.063690185546875,
+0.0,
+0.0,
+-0.064056396484375,
+0.9960784912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.45,
+-48.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.95843505859375,
+0.034454345703125,
+0.0,
+0.0,
+-0.033843994140625,
+0.9976654052734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.7,
+-43.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head front face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 174.05,
+"y": 109.7
+},
+"M3D": [
+1.0166015625,
+0.022216796875,
+0.0,
+0.0,
+-0.0218505859375,
+0.9996795654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.0,
+-41.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "head front face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 94.15,
+"y": 80.10000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-549.2,
+-41.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 91,
+"E": [
+{
+"SI": {
+"SN": "head front face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 94.15,
+"y": 80.10000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-548.4,
+-41.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "head front face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 179.0,
+"y": 110.55
+},
+"M3D": [
+1.0129241943359376,
+0.0274658203125,
+0.0,
+0.0,
+-0.027099609375,
+0.999542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-547.8,
+-43.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head front face",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 178.95000000000003,
+"y": 110.55
+},
+"M3D": [
+1.028289794921875,
+0.0684967041015625,
+0.0,
+0.0,
+-0.06640625,
+0.9971923828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-551.55,
+-40.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 11,
+"E": []
+}
+]
+},
+{
+"LN": "bf_arms",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-470.55,
+93.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.5
+},
+"M3D": [
+0.927490234375,
+-0.37042236328125,
+0.0,
+0.0,
+0.37042236328125,
+0.927490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-527.6,
+80.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.7
+},
+"M3D": [
+0.95758056640625,
+0.28118896484375,
+0.0,
+0.0,
+-0.28118896484375,
+0.95758056640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-409.9,
+55.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "SF",
+"TRP": {
+"x": 57.75,
+"y": 44.400000000000009
+},
+"M3D": [
+0.84527587890625,
+-0.53009033203125,
+0.0,
+0.0,
+0.53009033203125,
+0.84527587890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-661.65,
+28.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+0.8865966796875,
+-0.4591522216796875,
+0.0,
+0.0,
+0.4591522216796875,
+0.8865966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.1,
+108.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.927490234375,
+-0.37042236328125,
+0.0,
+0.0,
+0.37042236328125,
+0.927490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.05,
+10.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 45.550000000000007,
+"y": 41.550000000000007
+},
+"M3D": [
+0.9908447265625,
+-0.131439208984375,
+0.0,
+0.0,
+0.131439208984375,
+0.9908447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-507.75,
+39.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.5
+},
+"M3D": [
+0.927490234375,
+-0.37042236328125,
+0.0,
+0.0,
+0.37042236328125,
+0.927490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-527.6,
+80.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.7
+},
+"M3D": [
+0.95758056640625,
+0.28118896484375,
+0.0,
+0.0,
+-0.28118896484375,
+0.95758056640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-409.9,
+55.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "SF",
+"TRP": {
+"x": 57.75,
+"y": 44.4
+},
+"M3D": [
+0.84527587890625,
+-0.53009033203125,
+0.0,
+0.0,
+0.53009033203125,
+0.84527587890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-661.65,
+28.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.65,
+"y": 55.0
+},
+"M3D": [
+0.8865966796875,
+-0.4591522216796875,
+0.0,
+0.0,
+0.4591522216796875,
+0.8865966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.1,
+108.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.927490234375,
+-0.37042236328125,
+0.0,
+0.0,
+0.37042236328125,
+0.927490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.05,
+10.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.55,
+"y": 41.55
+},
+"M3D": [
+0.9908447265625,
+-0.131439208984375,
+0.0,
+0.0,
+0.131439208984375,
+0.9908447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-507.75,
+39.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "SF",
+"TRP": {
+"x": 57.75,
+"y": 44.400000000000009
+},
+"M3D": [
+0.84527587890625,
+-0.53009033203125,
+0.0,
+0.0,
+0.53009033203125,
+0.84527587890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-640.5,
+33.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.550000000000007
+},
+"M3D": [
+0.98150634765625,
+-0.181182861328125,
+0.0,
+0.0,
+0.181182861328125,
+0.98150634765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-532.2,
+41.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.25
+},
+"M3D": [
+0.98150634765625,
+-0.181182861328125,
+0.0,
+0.0,
+0.181182861328125,
+0.98150634765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-586.5,
+-41.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf clenched face",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 45.550000000000007,
+"y": 41.6
+},
+"M3D": [
+0.9967498779296875,
+0.0654296875,
+0.0,
+0.0,
+-0.0654296875,
+0.9967498779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.65,
+4.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.25,
+"y": 48.7
+},
+"M3D": [
+0.94561767578125,
+0.3187713623046875,
+0.0,
+0.0,
+-0.3187713623046875,
+0.94561767578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-409.15,
+14.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "fist shaking",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 54.6,
+"y": 54.95
+},
+"M3D": [
+0.72381591796875,
+-0.77349853515625,
+0.0,
+0.0,
+0.4591522216796875,
+0.8865966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.2,
+83.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": []
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.800000000000007
+},
+"M3D": [
+0.996063232421875,
+-0.0732879638671875,
+0.0,
+0.0,
+0.0732879638671875,
+0.996063232421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.05,
+79.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.25,
+"y": 102.45
+},
+"M3D": [
+0.96710205078125,
+-0.25103759765625,
+0.0,
+0.0,
+0.25103759765625,
+0.96710205078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-657.45,
+-30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.8
+},
+"M3D": [
+0.996063232421875,
+-0.0732879638671875,
+0.0,
+0.0,
+0.0732879638671875,
+0.996063232421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.05,
+79.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.25,
+"y": 102.45
+},
+"M3D": [
+0.96710205078125,
+-0.25103759765625,
+0.0,
+0.0,
+0.25103759765625,
+0.96710205078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-657.45,
+-30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.8
+},
+"M3D": [
+0.996063232421875,
+-0.0732879638671875,
+0.0,
+0.0,
+0.0732879638671875,
+0.996063232421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.05,
+79.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.25,
+"y": 102.45
+},
+"M3D": [
+0.96710205078125,
+-0.25103759765625,
+0.0,
+0.0,
+0.25103759765625,
+0.96710205078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-657.45,
+-30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.7
+},
+"M3D": [
+0.9982757568359375,
+-0.034820556640625,
+0.0,
+0.0,
+0.034820556640625,
+0.9982757568359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-427.25,
+73.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 96.5,
+"y": 100.0
+},
+"M3D": [
+0.978302001953125,
+-0.2039031982421875,
+0.0,
+0.0,
+0.2039031982421875,
+0.978302001953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-648.85,
+-37.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.7
+},
+"M3D": [
+0.9982757568359375,
+-0.034820556640625,
+0.0,
+0.0,
+0.034820556640625,
+0.9982757568359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-427.25,
+73.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 96.5,
+"y": 100.0
+},
+"M3D": [
+0.978302001953125,
+-0.2039031982421875,
+0.0,
+0.0,
+0.2039031982421875,
+0.978302001953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-648.85,
+-37.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.7
+},
+"M3D": [
+0.9982757568359375,
+-0.034820556640625,
+0.0,
+0.0,
+0.034820556640625,
+0.9982757568359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-427.25,
+73.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 96.5,
+"y": 100.0
+},
+"M3D": [
+0.978302001953125,
+-0.2039031982421875,
+0.0,
+0.0,
+0.2039031982421875,
+0.978302001953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-648.85,
+-37.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998809814453125,
+-0.01641845703125,
+0.0,
+0.0,
+0.01641845703125,
+0.998809814453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.8,
+72.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.35
+},
+"M3D": [
+0.98095703125,
+-0.1909027099609375,
+0.0,
+0.0,
+0.1909027099609375,
+0.98095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.45,
+-38.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.7
+},
+"M3D": [
+0.99884033203125,
+0.0061492919921875,
+0.0,
+0.0,
+-0.0061492919921875,
+0.99884033203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.2,
+72.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 123.5,
+"y": 95.45
+},
+"M3D": [
+0.971405029296875,
+-0.234130859375,
+0.0,
+0.0,
+0.234130859375,
+0.971405029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-650.35,
+-32.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.7
+},
+"M3D": [
+0.99884033203125,
+0.0061492919921875,
+0.0,
+0.0,
+-0.0061492919921875,
+0.99884033203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.2,
+72.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 123.5,
+"y": 95.45
+},
+"M3D": [
+0.971405029296875,
+-0.234130859375,
+0.0,
+0.0,
+0.234130859375,
+0.971405029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-650.35,
+-32.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.7
+},
+"M3D": [
+0.99884033203125,
+0.0061492919921875,
+0.0,
+0.0,
+-0.0061492919921875,
+0.99884033203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-426.2,
+72.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 123.5,
+"y": 95.45
+},
+"M3D": [
+0.971405029296875,
+-0.234130859375,
+0.0,
+0.0,
+0.234130859375,
+0.971405029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-650.35,
+-32.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.75
+},
+"M3D": [
+0.998260498046875,
+0.031982421875,
+0.0,
+0.0,
+-0.031982421875,
+0.998260498046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-424.7,
+70.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.60000000000001,
+"y": 101.0
+},
+"M3D": [
+0.9723358154296875,
+-0.23028564453125,
+0.0,
+0.0,
+0.23028564453125,
+0.9723358154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-650.4,
+-30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998260498046875,
+0.031982421875,
+0.0,
+0.0,
+-0.031982421875,
+0.998260498046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-424.7,
+70.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.6,
+"y": 101.0
+},
+"M3D": [
+0.9723358154296875,
+-0.23028564453125,
+0.0,
+0.0,
+0.23028564453125,
+0.9723358154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-650.4,
+-30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.3,
+"y": 48.75
+},
+"M3D": [
+0.998260498046875,
+0.031982421875,
+0.0,
+0.0,
+-0.031982421875,
+0.998260498046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-424.7,
+70.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.6,
+"y": 101.0
+},
+"M3D": [
+0.9723358154296875,
+-0.23028564453125,
+0.0,
+0.0,
+0.23028564453125,
+0.9723358154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-650.4,
+-30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.35,
+"y": 48.75
+},
+"M3D": [
+0.9849853515625,
+0.1627655029296875,
+0.0,
+0.0,
+-0.1627655029296875,
+0.9849853515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-414.45,
+64.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.60000000000001,
+"y": 101.0
+},
+"M3D": [
+0.9597015380859375,
+-0.27764892578125,
+0.0,
+0.0,
+0.27764892578125,
+0.9597015380859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-652.0,
+-16.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.35,
+"y": 48.75
+},
+"M3D": [
+0.9849853515625,
+0.1627655029296875,
+0.0,
+0.0,
+-0.1627655029296875,
+0.9849853515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-414.45,
+64.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.6,
+"y": 101.0
+},
+"M3D": [
+0.9597015380859375,
+-0.27764892578125,
+0.0,
+0.0,
+0.27764892578125,
+0.9597015380859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-652.0,
+-16.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.35,
+"y": 48.75
+},
+"M3D": [
+0.9849853515625,
+0.1627655029296875,
+0.0,
+0.0,
+-0.1627655029296875,
+0.9849853515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-414.45,
+64.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.6,
+"y": 101.0
+},
+"M3D": [
+0.9597015380859375,
+-0.27764892578125,
+0.0,
+0.0,
+0.27764892578125,
+0.9597015380859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-652.0,
+-16.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.45,
+"y": 48.75
+},
+"M3D": [
+0.9349365234375,
+0.348358154296875,
+0.0,
+0.0,
+-0.348358154296875,
+0.9349365234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-397.35,
+54.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.60000000000001,
+"y": 101.05
+},
+"M3D": [
+0.89825439453125,
+-0.43603515625,
+0.0,
+0.0,
+0.546234130859375,
+0.8447723388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-661.75,
+34.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.45,
+"y": 48.8
+},
+"M3D": [
+0.9349365234375,
+0.348358154296875,
+0.0,
+0.0,
+-0.348358154296875,
+0.9349365234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-397.35,
+54.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.6,
+"y": 101.05
+},
+"M3D": [
+0.89825439453125,
+-0.43603515625,
+0.0,
+0.0,
+0.546234130859375,
+0.8447723388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-661.75,
+34.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 113,
+"E": []
+}
+]
+},
+{
+"LN": "arm_head_rub_loop_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 90,
+"E": []
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm head rub loop",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.45
+},
+"M3D": [
+0.990386962890625,
+0.1351165771484375,
+0.0,
+0.0,
+-0.1351165771484375,
+0.990386962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-402.25,
+35.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.5,
+"y": 56.6
+},
+"M3D": [
+0.99700927734375,
+-0.0618133544921875,
+0.0,
+0.0,
+0.0618133544921875,
+0.99700927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-389.4,
+19.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.6,
+"y": 49.35
+},
+"M3D": [
+0.924560546875,
+0.38262939453125,
+0.0,
+0.0,
+-0.3195648193359375,
+0.92462158203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-393.9,
+42.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.4,
+"y": 56.6
+},
+"M3D": [
+0.974456787109375,
+0.1373291015625,
+0.0,
+0.0,
+-0.0763702392578125,
+0.9904022216796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-381.65,
+30.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 124.05,
+"y": 97.95
+},
+"M3D": [
+0.31817626953125,
+-0.9468994140625,
+0.0,
+0.0,
+0.9468994140625,
+0.31817626953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.1,
+109.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.8,
+"y": 34.35
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.08056640625,
+0.9964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-546.35,
+51.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 122.45,
+"y": 8.6
+},
+"M3D": [
+0.99078369140625,
+-0.019989013671875,
+0.0,
+0.0,
+0.100006103515625,
+0.996429443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-538.2,
+67.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.70000000000003,
+"y": 70.25
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.08056640625,
+0.9964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-591.7,
+-36.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.3,
+"y": 42.2
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.08056640625,
+0.9964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-544.7,
+13.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.400000000000003,
+"y": 13.85
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.0947113037109375,
+1.171478271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.4,
+77.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 187,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 124.05,
+"y": 97.95
+},
+"M3D": [
+0.31817626953125,
+-0.9468994140625,
+0.0,
+0.0,
+0.9468994140625,
+0.31817626953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-647.1,
+109.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.8,
+"y": 34.35
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.08056640625,
+0.9964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-546.35,
+51.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 122.45,
+"y": 8.6
+},
+"M3D": [
+0.99078369140625,
+-0.019989013671875,
+0.0,
+0.0,
+0.100006103515625,
+0.996429443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-538.2,
+67.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.7,
+"y": 70.25
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.08056640625,
+0.9964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-591.7,
+-36.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.3,
+"y": 42.2
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.08056640625,
+0.9964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-544.7,
+13.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.4,
+"y": 13.85
+},
+"M3D": [
+0.989990234375,
+-0.07916259765625,
+0.0,
+0.0,
+0.0947113037109375,
+1.171478271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.4,
+77.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 188,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-536.65,
+40.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 128.65,
+"y": 27.85
+},
+"M3D": [
+1.0,
+-0.0503082275390625,
+0.0,
+0.0,
+0.0377044677734375,
+0.99810791015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-540.35,
+75.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 115.30000000000001,
+"y": 97.9
+},
+"M3D": [
+0.9983978271484375,
+-0.05322265625,
+0.0,
+0.0,
+0.05322265625,
+0.9983978271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-633.05,
+-68.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 147.05,
+"y": 135.20000000000003
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-575.25,
+-50.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.65,
+0.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-487.4,
+70.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 189,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-536.65,
+40.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 128.65,
+"y": 27.85
+},
+"M3D": [
+1.0,
+-0.0503082275390625,
+0.0,
+0.0,
+0.0377044677734375,
+0.99810791015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-540.35,
+75.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 115.3,
+"y": 97.9
+},
+"M3D": [
+0.9983978271484375,
+-0.05322265625,
+0.0,
+0.0,
+0.05322265625,
+0.9983978271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-633.05,
+-68.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 147.05,
+"y": 135.2
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-575.25,
+-50.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.65,
+0.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-487.4,
+70.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 190,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-536.65,
+40.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 128.65,
+"y": 27.85
+},
+"M3D": [
+1.0,
+-0.0503082275390625,
+0.0,
+0.0,
+0.0377044677734375,
+0.99810791015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-540.35,
+75.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 115.3,
+"y": 97.9
+},
+"M3D": [
+0.9983978271484375,
+-0.05322265625,
+0.0,
+0.0,
+0.05322265625,
+0.9983978271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-633.05,
+-68.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 147.05,
+"y": 135.2
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-575.25,
+-50.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.65,
+0.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.99981689453125,
+-0.0011444091796875,
+0.0,
+0.0,
+0.0011444091796875,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-487.4,
+70.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 191,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.4
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.35,
+41.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 135.85,
+"y": 15.0
+},
+"M3D": [
+0.999755859375,
+-0.01190185546875,
+0.0,
+0.0,
+0.020172119140625,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.55,
+70.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 112.05,
+"y": 108.30000000000001
+},
+"M3D": [
+0.999755859375,
+-0.0181121826171875,
+0.0,
+0.0,
+0.0181121826171875,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-627.5,
+-70.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.05,
+-50.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.2,
+2.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.7,
+70.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 192,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.4
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.35,
+41.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 135.85,
+"y": 15.0
+},
+"M3D": [
+0.999755859375,
+-0.01190185546875,
+0.0,
+0.0,
+0.020172119140625,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.55,
+70.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 112.05,
+"y": 108.3
+},
+"M3D": [
+0.999755859375,
+-0.0181121826171875,
+0.0,
+0.0,
+0.0181121826171875,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-627.5,
+-70.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.05,
+-50.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.2,
+2.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.7,
+70.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 193,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.4
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.35,
+41.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 135.85,
+"y": 15.0
+},
+"M3D": [
+0.999755859375,
+-0.01190185546875,
+0.0,
+0.0,
+0.020172119140625,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.55,
+70.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 112.05,
+"y": 108.3
+},
+"M3D": [
+0.999755859375,
+-0.0181121826171875,
+0.0,
+0.0,
+0.0181121826171875,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-627.5,
+-70.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.05,
+-50.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.2,
+2.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.9998626708984375,
+0.0083465576171875,
+0.0,
+0.0,
+-0.0083465576171875,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.7,
+70.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 194,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.3,
+42.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.8,
+-48.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.5,
+3.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.45,
+71.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 195,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.3,
+42.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.8,
+-48.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.5,
+3.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.45,
+71.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 196,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.3,
+42.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "SF",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.8,
+-48.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.5,
+3.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.45,
+71.2,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_4",
+"FR": [
+{
+"I": 0,
+"DU": 85,
+"E": []
+},
+{
+"I": 85,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.400000000000009
+},
+"M3D": [
+0.989776611328125,
+0.139404296875,
+0.0,
+0.0,
+-0.139404296875,
+0.989776611328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-405.25,
+36.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 68.60000000000001,
+"y": 57.75
+},
+"M3D": [
+0.9987640380859375,
+-0.022430419921875,
+0.0,
+0.0,
+0.022430419921875,
+0.9987640380859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-390.55,
+18.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.5
+},
+"M3D": [
+0.9992523193359375,
+0.0352935791015625,
+0.0,
+0.0,
+-0.0352935791015625,
+0.9992523193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.15,
+35.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 68.75,
+"y": 55.45
+},
+"M3D": [
+0.9990234375,
+-0.0348663330078125,
+0.0,
+0.0,
+0.0348663330078125,
+0.9990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-392.5,
+9.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.5
+},
+"M3D": [
+0.9992523193359375,
+0.0352935791015625,
+0.0,
+0.0,
+-0.0352935791015625,
+0.9992523193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.15,
+35.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 68.75,
+"y": 55.45
+},
+"M3D": [
+0.9990234375,
+-0.0348663330078125,
+0.0,
+0.0,
+0.0348663330078125,
+0.9990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-392.5,
+9.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 107,
+"E": []
+}
+]
+},
+{
+"LN": "bf_bottom_head",
+"FR": [
+{
+"I": 0,
+"DU": 29,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.968597412109375,
+-0.245361328125,
+0.0,
+0.0,
+0.245361328125,
+0.968597412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-529.15,
+74.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 3,
+"E": []
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 57.65,
+"y": 44.35
+},
+"M3D": [
+0.9986572265625,
+-0.016815185546875,
+0.0,
+0.0,
+-0.1139373779296875,
+1.0008544921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-618.25,
+-41.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.45
+},
+"M3D": [
+0.9732666015625,
+0.21929931640625,
+0.0,
+0.0,
+-0.21929931640625,
+0.9732666015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.35,
+22.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.45
+},
+"M3D": [
+0.99725341796875,
+-0.0408782958984375,
+0.0,
+0.0,
+0.0408782958984375,
+0.99725341796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-538.65,
+62.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.4
+},
+"M3D": [
+0.9981536865234375,
+0.015625,
+0.0,
+0.0,
+-0.015625,
+0.9981536865234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-533.45,
+49.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 34,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.4
+},
+"M3D": [
+0.99798583984375,
+0.0250701904296875,
+0.0,
+0.0,
+-0.0250701904296875,
+0.99798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-532.6,
+48.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.5
+},
+"M3D": [
+0.9981689453125,
+-0.0055999755859375,
+0.0,
+0.0,
+0.0055999755859375,
+0.9981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-532.25,
+50.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.45
+},
+"M3D": [
+0.9981689453125,
+0.0113525390625,
+0.0,
+0.0,
+-0.0113525390625,
+0.9981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-532.45,
+47.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.4
+},
+"M3D": [
+0.99798583984375,
+0.0250701904296875,
+0.0,
+0.0,
+-0.0250701904296875,
+0.99798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.6,
+46.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.55,
+"y": 34.4
+},
+"M3D": [
+0.9719696044921875,
+0.063690185546875,
+0.0,
+0.0,
+-0.064056396484375,
+0.9960784912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-521.75,
+44.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "SF",
+"TRP": {
+"x": 126.60000000000001,
+"y": 101.15
+},
+"M3D": [
+0.82525634765625,
+-0.596923828125,
+0.0,
+0.0,
+0.56671142578125,
+0.796051025390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-641.75,
+93.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.55,
+"y": 34.45
+},
+"M3D": [
+0.95843505859375,
+0.034454345703125,
+0.0,
+0.0,
+-0.033843994140625,
+0.9976654052734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-519.75,
+48.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 112,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 185,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 187,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 188,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 189,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 190,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 191,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 192,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 193,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 194,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 195,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 196,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 185,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 187,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 188,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 189,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 190,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 191,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 192,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 193,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 194,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 195,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 196,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "turntable",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 185,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 187,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 188,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 189,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 190,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 191,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 192,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 193,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 194,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 195,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 196,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_body",
+"FR": [
+{
+"I": 0,
+"DU": 29,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.35000000000001,
+"y": 110.9
+},
+"M3D": [
+1.02197265625,
+-0.004608154296875,
+0.0,
+0.0,
+-0.0086822509765625,
+0.9771728515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-580.3,
+84.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 125.60000000000001,
+"y": 181.4
+},
+"M3D": [
+1.0201416015625,
+-0.0582427978515625,
+0.0,
+0.0,
+0.0426177978515625,
+0.9761199951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-584.4,
+91.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 125.60000000000001,
+"y": 181.4
+},
+"M3D": [
+0.99591064453125,
+-0.226043701171875,
+0.0,
+0.0,
+0.203369140625,
+0.955078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.7,
+99.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 135.85,
+"y": 176.0
+},
+"M3D": [
+0.95806884765625,
+-0.3523406982421875,
+0.0,
+0.0,
+0.3363037109375,
+0.916259765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-622.0,
+135.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 109.9,
+"y": 134.5
+},
+"M3D": [
+1.004364013671875,
+-0.183837890625,
+0.0,
+0.0,
+0.162933349609375,
+0.962646484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-596.25,
+112.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.05,
+"y": 134.35
+},
+"M3D": [
+0.99627685546875,
+-0.2239837646484375,
+0.0,
+0.0,
+0.246978759765625,
+0.945220947265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.1,
+117.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 34,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.0,
+"y": 134.45
+},
+"M3D": [
+0.9945068359375,
+-0.2320556640625,
+0.0,
+0.0,
+0.254638671875,
+0.9432373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.9,
+118.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.0,
+"y": 134.45
+},
+"M3D": [
+0.9945068359375,
+-0.2320556640625,
+0.0,
+0.0,
+0.254638671875,
+0.9432373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.9,
+118.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 109.15,
+"y": 147.8
+},
+"M3D": [
+0.9945068359375,
+-0.2320556640625,
+0.0,
+0.0,
+0.26239013671875,
+0.941436767578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.05,
+118.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 109.2,
+"y": 147.75
+},
+"M3D": [
+0.9945068359375,
+-0.2320556640625,
+0.0,
+0.0,
+0.2903289794921875,
+0.9349212646484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-603.2,
+119.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 109.2,
+"y": 147.75
+},
+"M3D": [
+0.9945068359375,
+-0.2320556640625,
+0.0,
+0.0,
+0.310516357421875,
+0.930206298828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-602.2,
+121.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.7
+},
+"M3D": [
+-0.584442138671875,
+0.803375244140625,
+0.0,
+0.0,
+-0.7723388671875,
+-0.504486083984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.75,
+106.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body front chest",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 21.45,
+"y": 48.550000000000007
+},
+"M3D": [
+0.97772216796875,
+0.0221405029296875,
+0.0,
+0.0,
+-0.02264404296875,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-485.45,
+87.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.4,
+"y": 48.75
+},
+"M3D": [
+0.2774658203125,
+0.9551239013671875,
+0.0,
+0.0,
+0.9551239013671875,
+-0.2774658203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.65,
+94.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 8.6,
+"y": 28.75
+},
+"M3D": [
+0.339263916015625,
+-1.7381439208984376,
+0.0,
+0.0,
+0.9781341552734375,
+0.19091796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-495.05,
+125.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm back dark",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 58.800000000000007,
+"y": 26.650000000000003
+},
+"M3D": [
+0.973419189453125,
+0.2257537841796875,
+0.0,
+0.0,
+-0.2257537841796875,
+0.973419189453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-512.0,
+81.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body front chest",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 21.400000000000003,
+"y": 48.5
+},
+"M3D": [
+0.978057861328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-480.95,
+91.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 8.6,
+"y": 28.75
+},
+"M3D": [
+0.339263916015625,
+-1.7381439208984376,
+0.0,
+0.0,
+0.9781341552734375,
+0.19091796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.45,
+127.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm back dark",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.35,
+"y": 28.200000000000004
+},
+"M3D": [
+0.998870849609375,
+0.0443115234375,
+0.0,
+0.0,
+-0.0443115234375,
+0.998870849609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.45,
+94.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body front chest",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 47.0,
+"y": 46.900000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-478.2,
+92.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 91,
+"E": [
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 8.6,
+"y": 28.75
+},
+"M3D": [
+0.339263916015625,
+-1.7381439208984376,
+0.0,
+0.0,
+0.9781341552734375,
+0.19091796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.45,
+127.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm back dark",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 37.2,
+"y": 45.800000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.2,
+97.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body front chest",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 47.0,
+"y": 46.900000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-477.4,
+92.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 8.6,
+"y": 28.75
+},
+"M3D": [
+0.339263916015625,
+-1.7381439208984376,
+0.0,
+0.0,
+0.9781341552734375,
+0.19091796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.85,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm back dark",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 58.800000000000007,
+"y": 24.25
+},
+"M3D": [
+0.9986419677734375,
+-0.0486907958984375,
+0.0,
+0.0,
+0.0486907958984375,
+0.9986419677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.9,
+98.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body front chest",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 47.800000000000007,
+"y": 45.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.052978515625,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-480.6,
+92.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 184,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 8.6,
+"y": 28.8
+},
+"M3D": [
+0.29962158203125,
+-1.7452850341796876,
+0.0,
+0.0,
+0.98211669921875,
+0.1686248779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-491.5,
+129.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm back dark",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 58.800000000000007,
+"y": 24.3
+},
+"M3D": [
+0.9979095458984375,
+0.0561676025390625,
+0.0,
+0.0,
+-0.0561676025390625,
+0.9979095458984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-519.7,
+86.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body front chest",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 51.550000000000007,
+"y": 80.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.091339111328125,
+0.96209716796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-485.3,
+95.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 186,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.30000000000001,
+"y": 110.95
+},
+"M3D": [
+0.9886322021484375,
+-0.145050048828125,
+0.0,
+0.0,
+0.173095703125,
+0.9844970703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-616.1,
+103.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 188,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 118.30000000000001,
+"y": 188.60000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0093841552734375,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-607.95,
+77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 191,
+"DU": 6,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.25,
+77.5,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_11",
+"FR": [
+{
+"I": 0,
+"DU": 197,
+"E": []
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand open cringe",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0070",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.0,
+1.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "smile mouth",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0071",
+"M3D": [
+0.8472442626953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8472442626953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "mouth open shy",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0072",
+"M3D": [
+0.9667205810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9667205810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "face scared lip1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 31,
+"E": [
+{
+"SI": {
+"SN": "mouth lip",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 15.85,
+"y": 8.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.95,
+59.85,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_3",
+"FR": [
+{
+"I": 0,
+"DU": 16,
+"E": [
+{
+"SI": {
+"SN": "cheek under eye",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 23.150000000000003,
+"y": 13.200000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+35.75,
+23.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "cheek under eye",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 23.150000000000003,
+"y": 13.200000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+35.75,
+20.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "cheek under eye",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 23.150000000000003,
+"y": 13.200000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+35.75,
+23.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "cheek under eye",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 23.150000000000003,
+"y": 13.200000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+35.75,
+19.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 11,
+"E": [
+{
+"SI": {
+"SN": "cheek under eye",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 23.150000000000003,
+"y": 13.200000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+35.75,
+23.45,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 16,
+"E": [
+{
+"SI": {
+"SN": "eyes scared",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.900000000000009,
+"y": 27.150000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eyes scared wiggle",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.7,
+"y": 27.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "eyes scared",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.900000000000009,
+"y": 27.150000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eyes scared wiggle",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.7,
+"y": 27.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 11,
+"E": [
+{
+"SI": {
+"SN": "eyes scared",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.900000000000009,
+"y": 27.150000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "mouth lip",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0081",
+"M3D": [
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "cheek under eye",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0082",
+"M3D": [
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "eyes scared",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0083",
+"M3D": [
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "eyes scared wiggle",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0084",
+"M3D": [
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8463287353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blush",
+"TL": {
+"L": [
+{
+"LN": "Layer_3",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0073",
+"M3D": [
+0.9834136962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9834136962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "eyes shy",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0074",
+"M3D": [
+0.9834136962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9834136962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head front face",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0075",
+"M3D": [
+0.9703216552734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9703216552734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm head rub loop",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.55,
+36.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 36.0,
+"y": 33.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-393.2,
+4.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.5,
+"y": 49.45
+},
+"M3D": [
+0.9993896484375,
+0.0312347412109375,
+0.0,
+0.0,
+-0.0312347412109375,
+0.9993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-411.3,
+35.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.55,
+"y": 60.35
+},
+"M3D": [
+0.9981689453125,
+0.0521087646484375,
+0.0,
+0.0,
+-0.0521087646484375,
+0.9981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-388.6,
+4.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.45
+},
+"M3D": [
+0.997528076171875,
+0.0669097900390625,
+0.0,
+0.0,
+-0.0669097900390625,
+0.997528076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-408.75,
+36.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.55,
+"y": 60.35
+},
+"M3D": [
+0.998779296875,
+-0.0353851318359375,
+0.0,
+0.0,
+0.0353851318359375,
+0.998779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-392.5,
+12.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.45
+},
+"M3D": [
+0.990386962890625,
+0.1351165771484375,
+0.0,
+0.0,
+-0.1351165771484375,
+0.990386962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-402.6,
+35.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.5,
+"y": 56.6
+},
+"M3D": [
+0.99700927734375,
+-0.0618133544921875,
+0.0,
+0.0,
+0.0618133544921875,
+0.99700927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-389.75,
+19.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.25,
+"y": 84.0
+},
+"M3D": [
+0.9952392578125,
+0.09088134765625,
+0.0,
+0.0,
+-0.09088134765625,
+0.9952392578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-406.6,
+35.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.55,
+"y": 56.6
+},
+"M3D": [
+0.992156982421875,
+-0.1144866943359375,
+0.0,
+0.0,
+0.1144866943359375,
+0.992156982421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-393.75,
+18.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm back light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.550000000000007,
+"y": 49.45
+},
+"M3D": [
+0.997528076171875,
+0.0669097900390625,
+0.0,
+0.0,
+-0.0669097900390625,
+0.997528076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-408.75,
+36.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm partial",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.55,
+"y": 60.35
+},
+"M3D": [
+0.998779296875,
+-0.0353851318359375,
+0.0,
+0.0,
+0.0353851318359375,
+0.998779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-392.5,
+12.45,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm back light",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0076",
+"M3D": [
+0.9993743896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9993743896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "forearm partial",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0077",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body front chest",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0078",
+"M3D": [
+0.9985809326171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9985809326171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "brim piece",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0079",
+"M3D": [
+0.5646514892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.5646514892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm back dark",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0080",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf dj afk",
+"TL": {
+"L": [
+{
+"LN": "Layer_8",
+"FR": [
+{
+"I": 0,
+"DU": 45,
+"E": []
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+216.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+203.25,
+219.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+39.25,
+211.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 8,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 60,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 61,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 62,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 63,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 64,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 65,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 66,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 67,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 68,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 69,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 70,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 71,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 72,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 73,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf surprise",
+"IN": "",
+"ST": "G",
+"FF": 74,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+268.4,
+152.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 16.3,
+"y": 62.6
+},
+"M3D": [
+0.9994964599609375,
+-0.0279998779296875,
+0.0,
+0.0,
+0.0279998779296875,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+124.8,
+122.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 89.95,
+"y": 30.200000000000004
+},
+"M3D": [
+0.9989471435546875,
+0.0379180908203125,
+0.0,
+0.0,
+-0.0379180908203125,
+0.9989471435546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+56.45,
+147.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.45,
+"y": 67.15
+},
+"M3D": [
+1.0445709228515626,
+-0.0101776123046875,
+0.0,
+0.0,
+-0.10882568359375,
+1.045745849609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+138.85,
+115.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 34.45
+},
+"M3D": [
+0.996917724609375,
+0.0556182861328125,
+0.0,
+0.0,
+-0.0556182861328125,
+0.996917724609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+114.75,
+73.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.3,
+"y": 48.45
+},
+"M3D": [
+0.9998779296875,
+0.0035858154296875,
+0.0,
+0.0,
+-0.0035858154296875,
+0.9998779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+209.35,
+103.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 11.55,
+"y": 38.85
+},
+"M3D": [
+0.9994964599609375,
+-0.023956298828125,
+0.0,
+0.0,
+0.023956298828125,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+222.45,
+138.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.10000000000001
+},
+"M3D": [
+0.996917724609375,
+0.0556182861328125,
+0.0,
+0.0,
+-0.0556182861328125,
+0.996917724609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+81.2,
+-19.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.300000000000007,
+"y": 31.1
+},
+"M3D": [
+0.999786376953125,
+0.012664794921875,
+0.0,
+0.0,
+-0.012664794921875,
+0.999786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+147.4,
+67.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.95,
+"y": 25.0
+},
+"M3D": [
+0.99810791015625,
+-0.058013916015625,
+0.0,
+0.0,
+0.058013916015625,
+0.99810791015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+125.15,
+120.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 77.4,
+"y": 19.45
+},
+"M3D": [
+0.99444580078125,
+-0.101715087890625,
+0.0,
+0.0,
+0.101715087890625,
+0.99444580078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.2,
+157.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.5,
+"y": 139.25
+},
+"M3D": [
+1.0445404052734376,
+0.01422119140625,
+0.0,
+0.0,
+-0.1332244873046875,
+1.04290771484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.0,
+114.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 34.5
+},
+"M3D": [
+0.995697021484375,
+0.0744781494140625,
+0.0,
+0.0,
+-0.0744781494140625,
+0.995697021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+118.0,
+74.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.25,
+"y": 48.45
+},
+"M3D": [
+0.9998626708984375,
+0.0133209228515625,
+0.0,
+0.0,
+-0.0133209228515625,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+210.6,
+107.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 4.9,
+"y": 36.1
+},
+"M3D": [
+0.998931884765625,
+-0.04095458984375,
+0.0,
+0.0,
+0.04095458984375,
+0.998931884765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+219.15,
+147.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.05
+},
+"M3D": [
+0.995697021484375,
+0.0744781494140625,
+0.0,
+0.0,
+-0.0744781494140625,
+0.995697021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+86.2,
+-18.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.300000000000007,
+"y": 31.150000000000003
+},
+"M3D": [
+0.9993896484375,
+0.031585693359375,
+0.0,
+0.0,
+-0.031585693359375,
+0.9993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+150.75,
+70.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.95,
+"y": 25.0
+},
+"M3D": [
+0.99810791015625,
+-0.058013916015625,
+0.0,
+0.0,
+0.058013916015625,
+0.99810791015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+125.15,
+120.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 77.4,
+"y": 19.45
+},
+"M3D": [
+0.99444580078125,
+-0.101715087890625,
+0.0,
+0.0,
+0.101715087890625,
+0.99444580078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.2,
+157.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.5,
+"y": 139.25
+},
+"M3D": [
+1.0445404052734376,
+0.01422119140625,
+0.0,
+0.0,
+-0.1332244873046875,
+1.04290771484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.0,
+114.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 34.55
+},
+"M3D": [
+0.995697021484375,
+0.0744781494140625,
+0.0,
+0.0,
+-0.0744781494140625,
+0.995697021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+118.0,
+74.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.25,
+"y": 48.45
+},
+"M3D": [
+0.9998626708984375,
+0.0133209228515625,
+0.0,
+0.0,
+-0.0133209228515625,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+210.6,
+107.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 4.9,
+"y": 36.1
+},
+"M3D": [
+0.998931884765625,
+-0.04095458984375,
+0.0,
+0.0,
+0.04095458984375,
+0.998931884765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+219.15,
+147.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.05
+},
+"M3D": [
+0.995697021484375,
+0.0744781494140625,
+0.0,
+0.0,
+-0.0744781494140625,
+0.995697021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+86.2,
+-18.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.15
+},
+"M3D": [
+0.9993896484375,
+0.031585693359375,
+0.0,
+0.0,
+-0.031585693359375,
+0.9993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+150.75,
+70.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.95,
+"y": 25.0
+},
+"M3D": [
+0.99810791015625,
+-0.058013916015625,
+0.0,
+0.0,
+0.058013916015625,
+0.99810791015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+125.15,
+120.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 77.4,
+"y": 19.45
+},
+"M3D": [
+0.99444580078125,
+-0.101715087890625,
+0.0,
+0.0,
+0.101715087890625,
+0.99444580078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.2,
+157.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.5,
+"y": 139.25
+},
+"M3D": [
+1.0445404052734376,
+0.01422119140625,
+0.0,
+0.0,
+-0.1332244873046875,
+1.04290771484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.0,
+114.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 34.55
+},
+"M3D": [
+0.995697021484375,
+0.0744781494140625,
+0.0,
+0.0,
+-0.0744781494140625,
+0.995697021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+118.0,
+74.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.25,
+"y": 48.45
+},
+"M3D": [
+0.9998626708984375,
+0.0133209228515625,
+0.0,
+0.0,
+-0.0133209228515625,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+210.6,
+107.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 4.9,
+"y": 36.1
+},
+"M3D": [
+0.998931884765625,
+-0.04095458984375,
+0.0,
+0.0,
+0.04095458984375,
+0.998931884765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+219.15,
+147.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.05
+},
+"M3D": [
+0.995697021484375,
+0.0744781494140625,
+0.0,
+0.0,
+-0.0744781494140625,
+0.995697021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+86.2,
+-18.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.15
+},
+"M3D": [
+0.9993896484375,
+0.031585693359375,
+0.0,
+0.0,
+-0.031585693359375,
+0.9993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+150.75,
+70.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.900000000000009,
+"y": 25.05
+},
+"M3D": [
+0.9906005859375,
+-0.12725830078125,
+0.0,
+0.0,
+0.12725830078125,
+0.9906005859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+117.7,
+124.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 77.4,
+"y": 19.45
+},
+"M3D": [
+0.935516357421875,
+-0.34759521484375,
+0.0,
+0.0,
+0.34759521484375,
+0.935516357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+52.3,
+166.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.550000000000007,
+"y": 139.15
+},
+"M3D": [
+1.0438690185546876,
+0.037811279296875,
+0.0,
+0.0,
+-0.175872802734375,
+1.03887939453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+144.8,
+113.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 34.5
+},
+"M3D": [
+0.99578857421875,
+0.0706024169921875,
+0.0,
+0.0,
+-0.0706024169921875,
+0.99578857421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+119.9,
+79.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.200000000000004,
+"y": 48.45
+},
+"M3D": [
+0.995330810546875,
+0.093048095703125,
+0.0,
+0.0,
+-0.093048095703125,
+0.995330810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+215.25,
+108.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 4.75,
+"y": 36.050000000000007
+},
+"M3D": [
+0.922271728515625,
+0.035888671875,
+0.0,
+0.0,
+-0.1554412841796875,
+0.99420166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+223.2,
+149.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.9,
+"y": 70.05
+},
+"M3D": [
+0.99578857421875,
+0.0706024169921875,
+0.0,
+0.0,
+-0.0706024169921875,
+0.99578857421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+87.7,
+-14.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.300000000000007,
+"y": 31.1
+},
+"M3D": [
+0.99932861328125,
+0.0276947021484375,
+0.0,
+0.0,
+-0.0276947021484375,
+0.99932861328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+151.35,
+77.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.9,
+"y": 25.05
+},
+"M3D": [
+0.9906005859375,
+-0.12725830078125,
+0.0,
+0.0,
+0.12725830078125,
+0.9906005859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+117.7,
+124.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 77.4,
+"y": 19.45
+},
+"M3D": [
+0.935516357421875,
+-0.34759521484375,
+0.0,
+0.0,
+0.34759521484375,
+0.935516357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+52.3,
+166.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.55,
+"y": 139.15
+},
+"M3D": [
+1.0438690185546876,
+0.037811279296875,
+0.0,
+0.0,
+-0.175872802734375,
+1.03887939453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+144.8,
+113.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.5,
+"y": 34.5
+},
+"M3D": [
+0.99578857421875,
+0.0706024169921875,
+0.0,
+0.0,
+-0.0706024169921875,
+0.99578857421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+119.9,
+79.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.2,
+"y": 48.45
+},
+"M3D": [
+0.995330810546875,
+0.093048095703125,
+0.0,
+0.0,
+-0.093048095703125,
+0.995330810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+215.25,
+108.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 4.75,
+"y": 36.05
+},
+"M3D": [
+0.922271728515625,
+0.035888671875,
+0.0,
+0.0,
+-0.1554412841796875,
+0.99420166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+223.2,
+149.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.9,
+"y": 70.05
+},
+"M3D": [
+0.99578857421875,
+0.0706024169921875,
+0.0,
+0.0,
+-0.0706024169921875,
+0.99578857421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+87.7,
+-14.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.99932861328125,
+0.0276947021484375,
+0.0,
+0.0,
+-0.0276947021484375,
+0.99932861328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+151.35,
+77.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "Boyfriend DJ",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -452.55,
+"y": 153.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+649.4,
+58.45,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_12",
+"FR": [
+{
+"I": 0,
+"DU": 22,
+"E": []
+},
+{
+"I": 22,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0090",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+317.0,
+-12.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0091",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+317.0,
+-12.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0092",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+317.0,
+-12.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0093",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+317.0,
+-12.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0094",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+317.0,
+-12.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 21,
+"E": [
+{
+"ASI": {
+"N": "0095",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+317.0,
+-12.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0096",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+306.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0097",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+318.0,
+-22.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0098",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+306.0,
+-2.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 83,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_11",
+"FR": [
+{
+"I": 0,
+"DU": 10,
+"E": []
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 3",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 121.75,
+"y": 124.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+88.9,
+125.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 4",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 120.7,
+"y": 152.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+89.35,
+70.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 5",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 125.95,
+"y": 176.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+84.5,
+21.3,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.66015625
+}
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 6",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 135.8,
+"y": 188.10000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+86.75,
+-6.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 7",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 191.3,
+"y": 199.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+57.75,
+-93.7,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.69921875
+}
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 8",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 191.3,
+"y": 199.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+57.75,
+-93.7,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.69921875
+}
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "blue tint 9",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 225.3,
+"y": 210.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+52.0,
+-130.8,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.3984375
+}
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "blue tint 10",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 228.25,
+"y": 214.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+62.45,
+-149.8,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1015625
+}
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 35,
+"E": []
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 1",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 205.35,
+"y": 268.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+82.6,
+-170.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "blue tint 2",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.45,
+"y": 113.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.9,
+107.55,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.6796875
+}
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 82,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 10,
+"E": []
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.35000000000001,
+"y": 60.300000000000007
+},
+"M3D": [
+0.6321868896484375,
+-0.44696044921875,
+0.0,
+0.0,
+0.6335906982421875,
+0.474609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+46.2,
+250.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.15,
+"y": 70.95
+},
+"M3D": [
+0.6348724365234375,
+0.4728240966796875,
+0.0,
+0.0,
+-0.6297454833984375,
+0.4479217529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+269.25,
+167.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+0.88348388671875,
+-0.09210205078125,
+0.0,
+0.0,
+0.1539764404296875,
+0.6467132568359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+102.3,
+192.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 84.7,
+"y": 123.75
+},
+"M3D": [
+0.86627197265625,
+-0.1485595703125,
+0.0,
+0.0,
+0.2309417724609375,
+0.63592529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+99.05,
+127.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.40000000000006,
+"y": 31.85
+},
+"M3D": [
+0.869598388671875,
+0.1644134521484375,
+0.0,
+0.0,
+-0.1988525390625,
+0.6285858154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-134.1,
+173.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.65000000000006,
+"y": 31.700000000000004
+},
+"M3D": [
+-0.8778076171875,
+0.101318359375,
+0.0,
+0.0,
+0.16644287109375,
+0.642822265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+551.25,
+201.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.5,
+"y": 60.35
+},
+"M3D": [
+0.6005859375,
+-0.5813446044921875,
+0.0,
+0.0,
+0.6455078125,
+0.5408935546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+46.7,
+230.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.2,
+"y": 70.95
+},
+"M3D": [
+0.64666748046875,
+0.53863525390625,
+0.0,
+0.0,
+-0.598114013671875,
+0.5823822021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+266.15,
+116.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+0.864501953125,
+-0.163909912109375,
+0.0,
+0.0,
+0.1819915771484375,
+0.778564453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+103.2,
+156.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 84.65,
+"y": 123.75
+},
+"M3D": [
+0.84490966796875,
+-0.23162841796875,
+0.0,
+0.0,
+0.2571868896484375,
+0.76092529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+96.9,
+77.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.75
+},
+"M3D": [
+0.862945556640625,
+0.1493377685546875,
+0.0,
+0.0,
+-0.1658172607421875,
+0.77716064453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-130.25,
+147.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.65000000000006,
+"y": 31.650000000000003
+},
+"M3D": [
+-0.85845947265625,
+0.1747894287109375,
+0.0,
+0.0,
+0.1940765380859375,
+0.77313232421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+541.1,
+141.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.300000000000007
+},
+"M3D": [
+0.6265106201171875,
+-0.673370361328125,
+0.0,
+0.0,
+0.673370361328125,
+0.6265106201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+40.05,
+207.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.2,
+"y": 71.0
+},
+"M3D": [
+0.674560546875,
+0.6239013671875,
+0.0,
+0.0,
+-0.6239013671875,
+0.674560546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+269.0,
+74.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.7,
+"y": 146.9
+},
+"M3D": [
+0.90179443359375,
+-0.1898193359375,
+0.0,
+0.0,
+0.1898193359375,
+0.90179443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+98.95,
+121.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 84.65,
+"y": 123.75
+},
+"M3D": [
+0.881378173828125,
+-0.268280029296875,
+0.0,
+0.0,
+0.268280029296875,
+0.881378173828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+92.4,
+29.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.75
+},
+"M3D": [
+0.900177001953125,
+0.1729736328125,
+0.0,
+0.0,
+-0.1729736328125,
+0.900177001953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-144.6,
+110.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.65000000000006,
+"y": 31.75
+},
+"M3D": [
+-0.8955078125,
+0.20245361328125,
+0.0,
+0.0,
+0.20245361328125,
+0.8955078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+555.75,
+104.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.4,
+"y": 60.25
+},
+"M3D": [
+0.68658447265625,
+-0.64117431640625,
+0.0,
+0.0,
+0.64117431640625,
+0.68658447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+42.75,
+191.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.2,
+"y": 71.0
+},
+"M3D": [
+0.7244873046875,
+0.5965576171875,
+0.0,
+0.0,
+-0.5965576171875,
+0.7244873046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+280.5,
+60.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.65,
+"y": 146.85
+},
+"M3D": [
+0.9208984375,
+-0.19384765625,
+0.0,
+0.0,
+0.19384765625,
+0.9208984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+109.05,
+110.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 84.65,
+"y": 123.75
+},
+"M3D": [
+0.9000244140625,
+-0.2739715576171875,
+0.0,
+0.0,
+0.2739715576171875,
+0.9000244140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+102.35,
+1.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.8
+},
+"M3D": [
+0.9192352294921875,
+0.1766204833984375,
+0.0,
+0.0,
+-0.1766204833984375,
+0.9192352294921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-129.45,
+95.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.6,
+"y": 31.700000000000004
+},
+"M3D": [
+-0.914459228515625,
+0.20672607421875,
+0.0,
+0.0,
+0.20672607421875,
+0.914459228515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+567.85,
+93.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.4,
+"y": 60.25
+},
+"M3D": [
+0.90362548828125,
+-0.4249267578125,
+0.0,
+0.0,
+0.4249267578125,
+0.90362548828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+41.15,
+68.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.2,
+"y": 71.10000000000001
+},
+"M3D": [
+0.9009246826171875,
+0.429168701171875,
+0.0,
+0.0,
+-0.429168701171875,
+0.9009246826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+319.45,
+-14.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+0.9935150146484375,
+-0.110382080078125,
+0.0,
+0.0,
+0.110382080078125,
+0.9935150146484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.25,
+20.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 84.65,
+"y": 123.75
+},
+"M3D": [
+0.97967529296875,
+-0.19720458984375,
+0.0,
+0.0,
+0.19720458984375,
+0.97967529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+146.3,
+-95.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.8
+},
+"M3D": [
+0.94403076171875,
+0.31884765625,
+0.0,
+0.0,
+-0.31884765625,
+0.94403076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-58.75,
+-67.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.65000000000006,
+"y": 31.8
+},
+"M3D": [
+-0.967041015625,
+0.244873046875,
+0.0,
+0.0,
+0.244873046875,
+0.967041015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+563.25,
+-22.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.4,
+"y": 60.25
+},
+"M3D": [
+0.90362548828125,
+-0.4249267578125,
+0.0,
+0.0,
+0.4249267578125,
+0.90362548828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+41.15,
+68.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.2,
+"y": 71.1
+},
+"M3D": [
+0.9009246826171875,
+0.429168701171875,
+0.0,
+0.0,
+-0.429168701171875,
+0.9009246826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+319.45,
+-14.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+0.9935150146484375,
+-0.110382080078125,
+0.0,
+0.0,
+0.110382080078125,
+0.9935150146484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+142.25,
+20.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "SF",
+"TRP": {
+"x": 84.65,
+"y": 123.75
+},
+"M3D": [
+0.97967529296875,
+-0.19720458984375,
+0.0,
+0.0,
+0.19720458984375,
+0.97967529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+146.3,
+-95.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.8
+},
+"M3D": [
+0.94403076171875,
+0.31884765625,
+0.0,
+0.0,
+-0.31884765625,
+0.94403076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-58.75,
+-67.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.65,
+"y": 31.8
+},
+"M3D": [
+-0.967041015625,
+0.244873046875,
+0.0,
+0.0,
+0.244873046875,
+0.967041015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+563.25,
+-22.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.25
+},
+"M3D": [
+0.98321533203125,
+-0.17913818359375,
+0.0,
+0.0,
+0.17913818359375,
+0.98321533203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+67.0,
+3.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.10000000000001
+},
+"M3D": [
+0.9902191162109375,
+0.1345672607421875,
+0.0,
+0.0,
+-0.1345672607421875,
+0.9902191162109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+340.7,
+-22.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+0.999237060546875,
+-0.0356903076171875,
+0.0,
+0.0,
+0.0356903076171875,
+0.999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+174.8,
+-1.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.7,
+"y": 123.75
+},
+"M3D": [
+0.997222900390625,
+-0.0709228515625,
+0.0,
+0.0,
+0.0709228515625,
+0.997222900390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.2,
+-126.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.8
+},
+"M3D": [
+0.9498291015625,
+0.30877685546875,
+0.0,
+0.0,
+-0.30877685546875,
+0.9498291015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+2.85,
+-105.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.6,
+"y": 31.8
+},
+"M3D": [
+-0.994781494140625,
+0.088897705078125,
+0.0,
+0.0,
+0.088897705078125,
+0.994781494140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+578.95,
+-4.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.25
+},
+"M3D": [
+0.98321533203125,
+-0.17913818359375,
+0.0,
+0.0,
+0.17913818359375,
+0.98321533203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+67.0,
+3.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.1
+},
+"M3D": [
+0.9902191162109375,
+0.1345672607421875,
+0.0,
+0.0,
+-0.1345672607421875,
+0.9902191162109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+340.7,
+-22.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+0.999237060546875,
+-0.0356903076171875,
+0.0,
+0.0,
+0.0356903076171875,
+0.999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+174.8,
+-1.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.7,
+"y": 123.75
+},
+"M3D": [
+0.997222900390625,
+-0.0709228515625,
+0.0,
+0.0,
+0.0709228515625,
+0.997222900390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.2,
+-126.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.8
+},
+"M3D": [
+0.9498291015625,
+0.30877685546875,
+0.0,
+0.0,
+-0.30877685546875,
+0.9498291015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+2.85,
+-105.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.6,
+"y": 31.8
+},
+"M3D": [
+-0.994781494140625,
+0.088897705078125,
+0.0,
+0.0,
+0.088897705078125,
+0.994781494140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+578.95,
+-4.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.5,
+"y": 60.25
+},
+"M3D": [
+0.993804931640625,
+-0.1033782958984375,
+0.0,
+0.0,
+0.1033782958984375,
+0.993804931640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+77.9,
+-24.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.2
+},
+"M3D": [
+0.994964599609375,
+0.0909423828125,
+0.0,
+0.0,
+-0.0909423828125,
+0.994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+352.15,
+-30.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.65,
+"y": 146.9
+},
+"M3D": [
+0.9994964599609375,
+-0.02557373046875,
+0.0,
+0.0,
+0.02557373046875,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+182.3,
+-11.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.80000000000001
+},
+"M3D": [
+0.9994964599609375,
+-0.02557373046875,
+0.0,
+0.0,
+0.02557373046875,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+213.35,
+-148.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.75
+},
+"M3D": [
+0.962249755859375,
+0.266693115234375,
+0.0,
+0.0,
+-0.266693115234375,
+0.962249755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.45,
+-104.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.65000000000006,
+"y": 31.8
+},
+"M3D": [
+-0.9983978271484375,
+0.0125274658203125,
+0.0,
+0.0,
+0.0125274658203125,
+0.9983978271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+584.85,
+-1.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.5,
+"y": 60.25
+},
+"M3D": [
+0.993804931640625,
+-0.1033782958984375,
+0.0,
+0.0,
+0.1033782958984375,
+0.993804931640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+77.9,
+-24.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.2
+},
+"M3D": [
+0.994964599609375,
+0.0909423828125,
+0.0,
+0.0,
+-0.0909423828125,
+0.994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+352.15,
+-30.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.65,
+"y": 146.9
+},
+"M3D": [
+0.9994964599609375,
+-0.02557373046875,
+0.0,
+0.0,
+0.02557373046875,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+182.3,
+-11.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.8
+},
+"M3D": [
+0.9994964599609375,
+-0.02557373046875,
+0.0,
+0.0,
+0.02557373046875,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+213.35,
+-148.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.75
+},
+"M3D": [
+0.962249755859375,
+0.266693115234375,
+0.0,
+0.0,
+-0.266693115234375,
+0.962249755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.45,
+-104.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.65,
+"y": 31.8
+},
+"M3D": [
+-0.9983978271484375,
+0.0125274658203125,
+0.0,
+0.0,
+0.0125274658203125,
+0.9983978271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+584.85,
+-1.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+0.999755859375,
+-0.0184326171875,
+0.0,
+0.0,
+0.0184326171875,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+78.05,
+-36.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.30000000000001,
+"y": 71.15
+},
+"M3D": [
+0.999847412109375,
+0.0123138427734375,
+0.0,
+0.0,
+-0.0123138427734375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+355.85,
+-26.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.65,
+"y": 146.9
+},
+"M3D": [
+0.999969482421875,
+-0.0052642822265625,
+0.0,
+0.0,
+0.0052642822265625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+187.95,
+-14.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.7,
+"y": 123.80000000000001
+},
+"M3D": [
+0.99993896484375,
+-0.0055084228515625,
+0.0,
+0.0,
+0.0055084228515625,
+0.99993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+221.2,
+-150.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.75
+},
+"M3D": [
+0.999847412109375,
+0.0123138427734375,
+0.0,
+0.0,
+-0.0123138427734375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+2.55,
+0.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.6,
+"y": 31.8
+},
+"M3D": [
+-0.9915618896484375,
+-0.12548828125,
+0.0,
+0.0,
+-0.12548828125,
+0.9915618896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.5,
+50.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+0.999755859375,
+-0.0184326171875,
+0.0,
+0.0,
+0.0184326171875,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+78.05,
+-36.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.3,
+"y": 71.15
+},
+"M3D": [
+0.999847412109375,
+0.0123138427734375,
+0.0,
+0.0,
+-0.0123138427734375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+355.85,
+-26.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.65,
+"y": 146.9
+},
+"M3D": [
+0.999969482421875,
+-0.0052642822265625,
+0.0,
+0.0,
+0.0052642822265625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+187.95,
+-14.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.7,
+"y": 123.8
+},
+"M3D": [
+0.99993896484375,
+-0.0055084228515625,
+0.0,
+0.0,
+0.0055084228515625,
+0.99993896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+221.2,
+-150.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.45,
+"y": 31.75
+},
+"M3D": [
+0.999847412109375,
+0.0123138427734375,
+0.0,
+0.0,
+-0.0123138427734375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+2.55,
+0.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.6,
+"y": 31.8
+},
+"M3D": [
+-0.9915618896484375,
+-0.12548828125,
+0.0,
+0.0,
+-0.12548828125,
+0.9915618896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.5,
+50.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.6,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 458.5,
+"y": 31.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.45,
+5.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.45,
+"y": 60.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+80.1,
+-39.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.25,
+"y": 71.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+356.5,
+-25.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-14.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 84.75,
+"y": 123.75
+},
+"M3D": [
+0.999969482421875,
+0.0046539306640625,
+0.0,
+0.0,
+-0.0046539306640625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+224.5,
+-150.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.5,
+"y": 31.85
+},
+"M3D": [
+0.999786376953125,
+0.0176239013671875,
+0.0,
+0.0,
+-0.0176239013671875,
+0.999786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+4.1,
+-2.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.9891357421875,
+-0.14373779296875,
+0.0,
+0.0,
+-0.14373779296875,
+0.9891357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+576.9,
+57.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 83.5,
+"y": 60.400000000000009
+},
+"M3D": [
+0.9855804443359375,
+-0.16595458984375,
+0.0,
+0.0,
+0.16595458984375,
+0.9855804443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+72.2,
+-15.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 88.2,
+"y": 71.15
+},
+"M3D": [
+0.972381591796875,
+0.230224609375,
+0.0,
+0.0,
+-0.230224609375,
+0.972381591796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+370.15,
+-32.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+189.45,
+-20.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "SF",
+"TRP": {
+"x": 87.0,
+"y": 188.8
+},
+"M3D": [
+0.982513427734375,
+-0.18280029296875,
+0.0,
+0.0,
+0.18280029296875,
+0.982513427734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+187.65,
+-118.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.40000000000006,
+"y": 31.8
+},
+"M3D": [
+0.9877777099609375,
+0.14837646484375,
+0.0,
+0.0,
+-0.14837646484375,
+0.9877777099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+9.05,
+-28.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.99871826171875,
+0.0224761962890625,
+0.0,
+0.0,
+0.0224761962890625,
+0.99871826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+579.9,
+20.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 154.95000000000003,
+"y": 39.050000000000007
+},
+"M3D": [
+0.9989013671875,
+0.0000152587890625,
+0.0,
+0.0,
+-0.0000152587890625,
+0.9989013671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+76.6,
+-41.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.1,
+"y": 58.85
+},
+"M3D": [
+0.98980712890625,
+0.1348876953125,
+0.0,
+0.0,
+-0.1348876953125,
+0.98980712890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+367.0,
+-48.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+194.5,
+-32.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 87.0,
+"y": 188.9
+},
+"M3D": [
+0.9716796875,
+-0.2302703857421875,
+0.0,
+0.0,
+0.2302703857421875,
+0.9716796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.75,
+-130.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.35,
+"y": 31.8
+},
+"M3D": [
+0.998077392578125,
+-0.0214996337890625,
+0.0,
+0.0,
+0.0214996337890625,
+0.998077392578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.0,
+33.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.55,
+"y": 31.75
+},
+"M3D": [
+-0.925018310546875,
+-0.3740234375,
+0.0,
+0.0,
+-0.3740234375,
+0.925018310546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+563.7,
+177.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shoulder right dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 154.45000000000003,
+"y": 65.35
+},
+"M3D": [
+0.91387939453125,
+0.55657958984375,
+0.0,
+0.0,
+-0.177764892578125,
+0.982421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+95.95,
+-60.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder left dad",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 22.3,
+"y": 70.2
+},
+"M3D": [
+0.97802734375,
+-0.45172119140625,
+0.0,
+0.0,
+0.04864501953125,
+0.9976806640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+315.8,
+53.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad bod",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.60000000000001,
+"y": 146.9
+},
+"M3D": [
+0.95599365234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.2246246337890626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+177.65,
+6.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 62.25,
+"y": 234.9
+},
+"M3D": [
+0.94403076171875,
+0.00439453125,
+0.0,
+0.0,
+-0.005340576171875,
+1.1489715576171876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+216.15,
+-156.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.55,
+"y": 31.700000000000004
+},
+"M3D": [
+0.707763671875,
+0.77288818359375,
+0.0,
+0.0,
+-0.49639892578125,
+0.8662109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+131.95,
+-381.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.55,
+"y": 31.8
+},
+"M3D": [
+-0.863372802734375,
+0.6556396484375,
+0.0,
+0.0,
+0.24615478515625,
+0.967529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+536.45,
+-373.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "head mouth open dad",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 62.300000000000007,
+"y": 234.8
+},
+"M3D": [
+0.73455810546875,
+-0.0264129638671875,
+0.0,
+0.0,
+-0.041534423828125,
+0.9031219482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+216.0,
+119.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 464.55,
+"y": 29.0
+},
+"M3D": [
+-0.01953125,
+1.1232147216796876,
+0.0,
+0.0,
+-0.37176513671875,
+0.287689208984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+383.3,
+-304.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "dad hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 458.6,
+"y": 31.75
+},
+"M3D": [
+-0.23779296875,
+0.751556396484375,
+0.0,
+0.0,
+0.35784912109375,
+0.422698974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+229.45,
+-133.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 82,
+"E": []
+}
+]
+}
+]
+}
+},
+{
+"SN": "bf surprise",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "face surprise snap",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 20.25,
+"y": 35.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-120.6,
+-87.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "face surprise",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 20.200000000000004,
+"y": 30.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-114.5,
+-72.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "face surprise",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 20.1,
+"y": 30.8
+},
+"M3D": [
+0.9996337890625,
+-0.0000457763671875,
+0.0,
+0.0,
+0.0000457763671875,
+0.9996337890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-103.05,
+-68.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face surprise",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 20.1,
+"y": 30.8
+},
+"M3D": [
+0.99859619140625,
+-0.0397491455078125,
+0.0,
+0.0,
+0.0397491455078125,
+0.99859619140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-83.15,
+-65.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 40,
+"E": []
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.300000000000007,
+"y": 31.0
+},
+"M3D": [
+0.998870849609375,
+0.036041259765625,
+0.0,
+0.0,
+0.00054931640625,
+1.00018310546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-123.5,
+-83.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 42.3,
+"y": 31.0
+},
+"M3D": [
+0.998870849609375,
+0.036041259765625,
+0.0,
+0.0,
+0.00054931640625,
+1.00018310546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-123.5,
+-83.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.300000000000007,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "face shrug",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "SF",
+"TRP": {
+"x": 42.3,
+"y": 31.1
+},
+"M3D": [
+0.999969482421875,
+0.00494384765625,
+0.0,
+0.0,
+-0.00494384765625,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-119.4,
+-81.85,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.10000000000001
+},
+"M3D": [
+0.9660491943359375,
+0.1278076171875,
+0.0,
+0.0,
+-0.121185302734375,
+1.0068359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-181.0,
+-179.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.99481201171875,
+0.0904083251953125,
+0.0,
+0.0,
+-0.0904083251953125,
+0.99481201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-181.8,
+-168.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.10000000000001
+},
+"M3D": [
+0.994476318359375,
+0.09033203125,
+0.0,
+0.0,
+-0.09033203125,
+0.994476318359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-175.85,
+-166.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.05
+},
+"M3D": [
+0.99700927734375,
+0.0507354736328125,
+0.0,
+0.0,
+-0.0507354736328125,
+0.99700927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-167.95,
+-159.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head back semi bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 135.65,
+"y": 87.05
+},
+"M3D": [
+0.999725341796875,
+-0.0132598876953125,
+0.0,
+0.0,
+0.0132598876953125,
+0.999725341796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-189.3,
+-148.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "head back semi bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 135.6,
+"y": 87.10000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-192.65,
+-150.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head back bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.10000000000001,
+"y": 82.05
+},
+"M3D": [
+0.9994964599609375,
+-0.028167724609375,
+0.0,
+0.0,
+0.0549774169921875,
+0.99871826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-178.35,
+-146.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "head back bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 113.2,
+"y": 82.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-173.25,
+-148.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head back semi bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 121.9,
+"y": 150.55
+},
+"M3D": [
+0.999847412109375,
+0.01409912109375,
+0.0,
+0.0,
+-0.01409912109375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-192.7,
+-152.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "head back semi bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 135.6,
+"y": 87.10000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-192.65,
+-150.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "head back semi bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 137.55,
+"y": 152.20000000000003
+},
+"M3D": [
+0.9990234375,
+0.0402374267578125,
+0.0,
+0.0,
+-0.0402374267578125,
+0.9990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-185.35,
+-155.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "head back semi bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 137.55,
+"y": 152.20000000000003
+},
+"M3D": [
+0.973114013671875,
+0.22686767578125,
+0.0,
+0.0,
+-0.239990234375,
+0.97003173828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-164.35,
+-179.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "head back semi bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 137.55,
+"y": 152.15
+},
+"M3D": [
+1.00286865234375,
+0.296356201171875,
+0.0,
+0.0,
+-0.1268310546875,
+0.9402313232421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-197.95,
+-196.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9949798583984375,
+0.07891845703125,
+0.0,
+0.0,
+-0.07891845703125,
+0.9949798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-185.45,
+-173.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.10000000000001
+},
+"M3D": [
+0.9974212646484375,
+0.0479278564453125,
+0.0,
+0.0,
+-0.0479278564453125,
+0.9974212646484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-186.3,
+-169.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_3",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm cringe l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 120.60000000000001,
+"y": 28.700000000000004
+},
+"M3D": [
+0.997039794921875,
+0.09027099609375,
+0.0,
+0.0,
+-0.0401458740234375,
+0.999053955078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-158.45,
+-60.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "arm cringe l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.55,
+"y": 55.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-160.0,
+-39.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm cringe l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.4,
+"y": 21.900000000000003
+},
+"M3D": [
+1.00262451171875,
+0.0926513671875,
+0.0,
+0.0,
+-0.2357177734375,
+0.97454833984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-147.5,
+-46.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm cringe l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.35000000000001,
+"y": 21.900000000000003
+},
+"M3D": [
+1.02667236328125,
+0.000946044921875,
+0.0,
+0.0,
+-0.3287353515625,
+0.972259521484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-138.55,
+-30.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 40,
+"E": []
+},
+{
+"I": 53,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.25,
+"y": 48.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-59.0,
+-52.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 7.25,
+"y": 31.650000000000003
+},
+"M3D": [
+0.99786376953125,
+0.061767578125,
+0.0,
+0.0,
+-0.061767578125,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-43.25,
+-22.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "arm shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.9998626708984375,
+0.0133209228515625,
+0.0,
+0.0,
+-0.0133209228515625,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-57.8,
+-49.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug l",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.85,
+"y": 36.2
+},
+"M3D": [
+0.9998626708984375,
+0.012237548828125,
+0.0,
+0.0,
+-0.012237548828125,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-44.05,
+-13.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_4",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.4
+},
+"M3D": [
+0.9660491943359375,
+0.1278076171875,
+0.0,
+0.0,
+-0.121185302734375,
+1.0068359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-154.8,
+-82.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.4
+},
+"M3D": [
+0.99481201171875,
+0.0904083251953125,
+0.0,
+0.0,
+-0.0904083251953125,
+0.99481201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-151.6,
+-74.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.45
+},
+"M3D": [
+0.994476318359375,
+0.09033203125,
+0.0,
+0.0,
+-0.09033203125,
+0.994476318359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-145.7,
+-72.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.60000000000001,
+"y": 34.45
+},
+"M3D": [
+0.99700927734375,
+0.0507354736328125,
+0.0,
+0.0,
+-0.0507354736328125,
+0.99700927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-134.15,
+-67.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 139.6,
+"y": 20.1
+},
+"M3D": [
+0.99566650390625,
+0.087249755859375,
+0.0,
+0.0,
+-0.087249755859375,
+0.99566650390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-204.6,
+-29.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 71.8,
+"y": 68.10000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-210.25,
+-20.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.70000000000003,
+"y": 24.05
+},
+"M3D": [
+0.994537353515625,
+0.09588623046875,
+0.0,
+0.0,
+-0.1311492919921875,
+0.9911346435546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-187.05,
+-25.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 24.0
+},
+"M3D": [
+0.9969482421875,
+0.0701141357421875,
+0.0,
+0.0,
+-0.1054534912109375,
+0.994476318359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-191.3,
+-22.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 105.55,
+"y": 26.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0254669189453125,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-213.1,
+-20.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 71.8,
+"y": 68.10000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-210.25,
+-20.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.30000000000001,
+"y": 28.1
+},
+"M3D": [
+0.99884033203125,
+-0.0444488525390625,
+0.0,
+0.0,
+0.0444488525390625,
+0.99884033203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-212.35,
+-15.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.35000000000001,
+"y": 28.1
+},
+"M3D": [
+0.9876556396484375,
+-0.1531982421875,
+0.0,
+0.0,
+0.1531982421875,
+0.9876556396484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-217.1,
+-6.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.45,
+"y": 28.150000000000003
+},
+"M3D": [
+0.9549407958984375,
+-0.29339599609375,
+0.0,
+0.0,
+0.411376953125,
+0.9186859130859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-225.1,
+3.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.4
+},
+"M3D": [
+0.9949798583984375,
+0.07891845703125,
+0.0,
+0.0,
+-0.07891845703125,
+0.9949798583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-154.2,
+-80.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.55,
+"y": 34.45
+},
+"M3D": [
+0.9974212646484375,
+0.0479278564453125,
+0.0,
+0.0,
+-0.0479278564453125,
+0.9974212646484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-152.05,
+-76.5,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_5",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 58.550000000000007,
+"y": 130.3
+},
+"M3D": [
+1.0445404052734376,
+-0.0141143798828125,
+0.0,
+0.0,
+-0.0596771240234375,
+1.06072998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-136.1,
+-39.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.400000000000009,
+"y": 67.15
+},
+"M3D": [
+1.044677734375,
+0.0,
+0.0,
+0.0,
+-0.1190185546875,
+1.044677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-128.4,
+-37.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.45,
+"y": 67.15
+},
+"M3D": [
+1.04302978515625,
+0.055145263671875,
+0.0,
+0.0,
+-0.173980712890625,
+1.0367431640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-121.05,
+-40.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 53.6,
+"y": 133.05
+},
+"M3D": [
+1.0417938232421876,
+0.0738983154296875,
+0.0,
+0.0,
+-0.21490478515625,
+1.0317840576171876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-115.6,
+-40.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.2,
+"y": 107.95
+},
+"M3D": [
+0.999755859375,
+0.0177459716796875,
+0.0,
+0.0,
+-0.0334930419921875,
+0.9994964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-132.95,
+-15.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-136.6,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0727081298828125,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-128.75,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0463104248046875,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-131.6,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.02130126953125,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-138.9,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-136.6,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0139007568359375,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-135.1,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0467681884765625,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-141.65,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chunk turned",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.1,
+"y": 107.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.1565399169921875,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-153.5,
+-14.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.6,
+"y": 132.25
+},
+"M3D": [
+1.02520751953125,
+0.0,
+0.0,
+0.0,
+-0.105255126953125,
+1.0565185546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-129.1,
+-39.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "body chunk upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.400000000000009,
+"y": 67.15
+},
+"M3D": [
+1.044677734375,
+0.0,
+0.0,
+0.0,
+-0.1190185546875,
+1.044677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-128.4,
+-37.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm cringe r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 143.3,
+"y": 9.4
+},
+"M3D": [
+0.9986572265625,
+-0.0482025146484375,
+0.0,
+0.0,
+0.0482025146484375,
+0.9986572265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-212.55,
+4.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "arm cringe r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 76.3,
+"y": 41.400000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-221.3,
+-5.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm cringe r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 140.3,
+"y": 9.55
+},
+"M3D": [
+0.99957275390625,
+0.0133819580078125,
+0.0,
+0.0,
+-0.0133819580078125,
+0.99957275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-224.6,
+-4.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm cringe r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 140.3,
+"y": 9.5
+},
+"M3D": [
+0.9989013671875,
+-0.0494232177734375,
+0.0,
+0.0,
+0.0127410888671875,
+0.9993743896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-224.85,
+9.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 23.55,
+"y": 39.0
+},
+"M3D": [
+0.997528076171875,
+-0.06512451171875,
+0.0,
+0.0,
+0.06512451171875,
+0.997528076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-61.45,
+16.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.7,
+"y": 29.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-55.35,
+14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.75,
+"y": 26.5
+},
+"M3D": [
+0.97332763671875,
+0.22607421875,
+0.0,
+0.0,
+-0.22607421875,
+0.97332763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-57.35,
+9.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.700000000000004,
+"y": 26.5
+},
+"M3D": [
+0.98699951171875,
+0.157470703125,
+0.0,
+0.0,
+-0.157470703125,
+0.98699951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-56.8,
+10.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 20.0,
+"y": 30.6
+},
+"M3D": [
+0.999267578125,
+-0.0350341796875,
+0.0,
+0.0,
+0.0350341796875,
+0.999267578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-55.3,
+14.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 10,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.7,
+"y": 29.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-55.35,
+14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.6,
+"y": 32.95
+},
+"M3D": [
+0.99884033203125,
+-0.044464111328125,
+0.0,
+0.0,
+0.044464111328125,
+0.99884033203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-55.75,
+16.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.6,
+"y": 32.95
+},
+"M3D": [
+0.97137451171875,
+0.233154296875,
+0.0,
+0.0,
+-0.233154296875,
+0.97137451171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-44.8,
+10.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hand turnaround",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.650000000000003,
+"y": 33.0
+},
+"M3D": [
+0.89691162109375,
+0.4382171630859375,
+0.0,
+0.0,
+-0.4382171630859375,
+0.89691162109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-32.95,
+0.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 16.25,
+"y": 62.550000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-144.15,
+-38.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.85000000000001,
+"y": 19.5
+},
+"M3D": [
+0.99200439453125,
+-0.1229095458984375,
+0.0,
+0.0,
+0.1229095458984375,
+0.99200439453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-214.25,
+-1.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 20,
+"E": [
+{
+"SI": {
+"SN": "arm shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 16.25,
+"y": 62.550000000000007
+},
+"M3D": [
+0.999755859375,
+-0.0182647705078125,
+0.0,
+0.0,
+0.0182647705078125,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-142.5,
+-32.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.35,
+"y": 34.95
+},
+"M3D": [
+0.999755859375,
+-0.0182647705078125,
+0.0,
+0.0,
+0.0182647705078125,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-213.15,
+-2.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "face surprise snap",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0112",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "face surprise",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0113",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "face shrug",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0121",
+"M3D": [
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-0.95,
+2.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 5,
+"E": [
+{
+"ASI": {
+"N": "0122",
+"M3D": [
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.99981689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+3.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head back semi bf",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0114",
+"M3D": [
+0.9562530517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9562530517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head back bf",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0115",
+"M3D": [
+0.9997406005859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9997406005859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm cringe l",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0116",
+"M3D": [
+0.9740142822265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9740142822265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm shrug l",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0088",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1.0,
+-1.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand shrug l",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0089",
+"M3D": [
+0.9937591552734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9937591552734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-0.95,
+-2.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm turnaround",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0117",
+"M3D": [
+0.993438720703125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.993438720703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body chunk upright",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0087",
+"M3D": [
+0.9412384033203125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9412384033203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body chunk turned",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0118",
+"M3D": [
+0.9879608154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9879608154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm cringe r",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0119",
+"M3D": [
+0.912200927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.912200927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand turnaround",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0120",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm shrug r",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0085",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+-1.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand shrug r",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0086",
+"M3D": [
+0.7014007568359375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7014007568359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-0.7,
+-0.7,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 3",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0099",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 4",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0100",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 5",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0101",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 6",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0102",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 7",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0103",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 8",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0104",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 9",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0105",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 10",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0106",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0107",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "blue tint 2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0108",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shoulder right dad",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0109",
+"M3D": [
+0.9345550537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9345550537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shoulder left dad",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0110",
+"M3D": [
+0.92822265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.92822265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "dad bod",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0111",
+"M3D": [
+0.8165740966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8165740966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head mouth open dad",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0123",
+"M3D": [
+0.8703155517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8703155517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0124",
+"M3D": [
+0.8703155517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8703155517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-5.2,
+20.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0125",
+"M3D": [
+0.8703155517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8703155517578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+1.7,
+-12.15,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "dad hand",
+"TL": {
+"L": [
+{
+"LN": "Layer_3",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hs1",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 56.5,
+"y": 46.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+397.75,
+-9.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hs2",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 59.75,
+"y": 47.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+391.5,
+-10.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hs3",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 66.25,
+"y": 43.900000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+383.75,
+-6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hs4",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 61.6,
+"y": 39.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+393.5,
+1.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hs5",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 61.6,
+"y": 39.1
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+393.5,
+1.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hs6",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 58.5,
+"y": 38.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+395.5,
+2.75,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 28.650000000000003,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.900000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.900000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "df5",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 18.5,
+"y": 17.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+392.25,
+30.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df1",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 28.65,
+"y": 22.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-16.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df2",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 24.85,
+"y": 20.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+441.0,
+-4.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df3",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 22.75,
+"y": 21.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+469.05,
+10.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "df4",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 18.85,
+"y": 24.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+486.35,
+38.15,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "palm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.2,
+"y": 46.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+410.95,
+-8.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 5,
+"E": [
+{
+"ASI": {
+"N": "0133",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+405.9,
+-3.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "palm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.2,
+"y": 46.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+410.95,
+-8.9,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hs1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0126",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hs2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0127",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hs3",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0128",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hs4",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0129",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hs5",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0130",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hs6",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0131",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "df5",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0134",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+9.75,
+7.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0135",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+17.8,
+8.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0136",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+11.55,
+8.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0137",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-6.2,
+7.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0138",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0139",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+2.65,
+1.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0140",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-4.45,
+0.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0141",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-11.55,
+-1.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0142",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-5.3,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "df1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0143",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.0,
+20.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0144",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.45,
+25.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0145",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+13.35,
+19.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0146",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-7.1,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0147",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0148",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0149",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.2,
+1.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0150",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.9,
+-1.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0151",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-17.8,
+-7.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0152",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-12.45,
+-3.55,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "df2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0153",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.2,
+15.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0154",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.45,
+24.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0155",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+13.35,
+16.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0156",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+21.35,
+-16.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0157",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+25.8,
+-12.45,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0158",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0159",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.1,
+3.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0160",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+7.1,
+-5.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0161",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.9,
+-19.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0162",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.2,
+-17.8,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "df3",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0163",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.0,
+23.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0164",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+5.3,
+29.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0165",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+9.75,
+23.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 4,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0166",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0167",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+5.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0168",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.55,
+-0.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0169",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+15.1,
+-12.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0170",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.45,
+-8.9,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "df4",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0171",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.0,
+29.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0172",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+5.3,
+32.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0173",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+10.65,
+20.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0174",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+35.6,
+10.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0175",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0176",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-0.85,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0177",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.55,
+-0.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0178",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+21.35,
+-1.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0179",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+11.55,
+-2.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "palm",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0132",
+"M3D": [
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890167236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "Boyfriend DJ watchin tv OG",
+"TL": {
+"L": [
+{
+"LN": "foot_wag_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 112,
+"E": []
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot wag",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": -328.95,
+"y": 175.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "feet",
+"FR": [
+{
+"I": 0,
+"DU": 34,
+"E": []
+},
+{
+"I": 34,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 81.0
+},
+"M3D": [
+0.8412322998046875,
+-0.3566131591796875,
+0.0,
+0.0,
+0.4406585693359375,
+0.79461669921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-571.25,
+7.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 44.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-447.85,
+93.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoe raised left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.25,
+"y": 103.35000000000001
+},
+"M3D": [
+0.980255126953125,
+0.1898651123046875,
+0.0,
+0.0,
+-0.1898651123046875,
+0.980255126953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-451.05,
+-56.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "shoe right lowering",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 53.65,
+"y": 74.55
+},
+"M3D": [
+0.86175537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.755401611328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.55,
+-71.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.6,
+"y": 32.6
+},
+"M3D": [
+0.9869232177734375,
+-0.315338134765625,
+0.0,
+0.0,
+0.2566375732421875,
+1.001953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-461.8,
+124.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoe raised left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.15,
+"y": 103.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-495.55,
+-27.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot raised right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.45,
+"y": 82.05
+},
+"M3D": [
+0.997894287109375,
+-0.0615234375,
+0.0,
+0.0,
+0.0615234375,
+0.997894287109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-489.2,
+-84.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 13.85,
+"y": 27.55
+},
+"M3D": [
+0.98828125,
+-0.149169921875,
+0.0,
+0.0,
+0.149169921875,
+0.98828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-386.4,
+130.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 132.65,
+"y": 123.4
+},
+"M3D": [
+1.010101318359375,
+-0.102142333984375,
+0.0,
+0.0,
+0.1287689208984375,
+0.9545135498046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.15,
+110.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.900000000000009,
+"y": 34.550000000000007
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot raised right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.45,
+"y": 82.10000000000001
+},
+"M3D": [
+1.072509765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.072509765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-489.15,
+-65.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.900000000000009,
+"y": 34.550000000000007
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoe right lowering",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 53.7,
+"y": 74.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-459.55,
+5.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 133.6,
+"y": 104.95
+},
+"M3D": [
+0.9986572265625,
+0.048583984375,
+0.0,
+0.0,
+-0.048583984375,
+0.9986572265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-494.65,
+84.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 3.45,
+"y": 14.100000000000002
+},
+"M3D": [
+0.9986419677734375,
+0.048828125,
+0.0,
+0.0,
+-0.048828125,
+0.9986419677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-390.4,
+116.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 8.05,
+"y": 24.75
+},
+"M3D": [
+0.9999237060546875,
+0.009185791015625,
+0.0,
+0.0,
+-0.009185791015625,
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-394.1,
+113.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 63,
+"E": [
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 65.35,
+"y": 60.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-394.3,
+113.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 72,
+"E": [
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "tv",
+"FR": [
+{
+"I": 0,
+"DU": 19,
+"E": []
+},
+{
+"I": 19,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 101.95,
+"y": 100.15
+},
+"M3D": [
+0.97344970703125,
+-0.225677490234375,
+0.0,
+0.0,
+0.225677490234375,
+0.97344970703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-669.3,
+-420.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 102.0,
+"y": 100.15
+},
+"M3D": [
+0.88458251953125,
+-0.31524658203125,
+0.0,
+0.0,
+0.18231201171875,
+1.5740966796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-657.1,
+-261.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.95,
+"y": 150.20000000000003
+},
+"M3D": [
+1.0295867919921876,
+0.0859222412109375,
+0.0,
+0.0,
+-0.08038330078125,
+0.96307373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-641.2,
+19.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 105.95,
+"y": 107.05
+},
+"M3D": [
+0.985748291015625,
+0.177978515625,
+0.0,
+0.0,
+-0.13262939453125,
+0.966705322265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-630.95,
+-1.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 101.95,
+"y": 100.15
+},
+"M3D": [
+0.9981536865234375,
+-0.057342529296875,
+0.0,
+0.0,
+0.057342529296875,
+0.9981536865234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-658.3,
+-6.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 101.95,
+"y": 100.10000000000001
+},
+"M3D": [
+0.9957275390625,
+-0.08868408203125,
+0.0,
+0.0,
+0.08868408203125,
+0.9957275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-661.2,
+-8.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 61.95,
+"y": 146.25
+},
+"M3D": [
+0.999481201171875,
+-0.0257110595703125,
+0.0,
+0.0,
+0.0257110595703125,
+0.999481201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-656.5,
+24.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.95,
+"y": 149.1
+},
+"M3D": [
+0.9996795654296875,
+0.0221710205078125,
+0.0,
+0.0,
+-0.0221710205078125,
+0.9996795654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.45,
+13.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 101.95,
+"y": 100.2
+},
+"M3D": [
+0.9998626708984375,
+-0.013519287109375,
+0.0,
+0.0,
+0.013519287109375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-654.1,
+15.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 148,
+"E": [
+{
+"SI": {
+"SN": "crt",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 101.95,
+"y": 100.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-652.75,
+13.75,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_face",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.25
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.7,
+23.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.25
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-542.5,
+25.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.75,
+25.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.2
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-527.45,
+7.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.9,
+74.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 6,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.5,
+3.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.45,
+71.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0188",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.0,
+21.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0189",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.0,
+16.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "chill face 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 52.25
+},
+"M3D": [
+0.979095458984375,
+-0.19952392578125,
+0.0,
+0.0,
+0.19952392578125,
+0.979095458984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-546.4,
+17.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "chill face 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.7,
+"y": 52.300000000000007
+},
+"M3D": [
+1.1317291259765626,
+-0.284393310546875,
+0.0,
+0.0,
+0.1190032958984375,
+0.816131591796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-529.35,
+46.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 162,
+"E": []
+}
+]
+},
+{
+"LN": "bf_top_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-594.75,
+-23.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.35,
+-18.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.15
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.75,
+-17.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-575.9,
+-43.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 6,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.8,
+-48.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.9936370849609375,
+0.10235595703125,
+0.0,
+0.0,
+-0.10235595703125,
+0.9936370849609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.65,
+-56.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.15
+},
+"M3D": [
+0.9955902099609375,
+-0.0802764892578125,
+0.0,
+0.0,
+0.0802764892578125,
+0.9955902099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-599.05,
+-29.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.15
+},
+"M3D": [
+0.956512451171875,
+-0.28729248046875,
+0.0,
+0.0,
+0.28729248046875,
+0.956512451171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-614.8,
+-0.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.85,
+"y": 70.2
+},
+"M3D": [
+0.9535980224609375,
+-0.2978363037109375,
+0.0,
+0.0,
+0.2978363037109375,
+0.9535980224609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-590.5,
+16.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 162,
+"E": []
+}
+]
+},
+{
+"LN": "bf_arms",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 57.65,
+"y": 44.35
+},
+"M3D": [
+0.963897705078125,
+0.263092041015625,
+0.0,
+0.0,
+-0.263092041015625,
+0.963897705078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-621.3,
+-95.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 57.65,
+"y": 44.35
+},
+"M3D": [
+0.963897705078125,
+0.263092041015625,
+0.0,
+0.0,
+-0.263092041015625,
+0.963897705078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-621.3,
+-95.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 126.25,
+"y": 20.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0239715576171875,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-538.8,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 97.2,
+"y": 77.85000000000001
+},
+"M3D": [
+0.978363037109375,
+0.20367431640625,
+0.0,
+0.0,
+-0.20367431640625,
+0.978363037109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.15,
+-75.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 126.25,
+"y": 20.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0239715576171875,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-538.8,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 97.2,
+"y": 77.85
+},
+"M3D": [
+0.978363037109375,
+0.20367431640625,
+0.0,
+0.0,
+-0.20367431640625,
+0.978363037109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.15,
+-75.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 123.30000000000001,
+"y": 20.5
+},
+"M3D": [
+0.9925537109375,
+-0.118499755859375,
+0.0,
+0.0,
+0.118499755859375,
+0.9925537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-540.85,
+84.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 120.4,
+"y": 67.25
+},
+"M3D": [
+0.97235107421875,
+-0.215240478515625,
+0.0,
+0.0,
+0.215240478515625,
+0.97235107421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-668.4,
+22.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 123.3,
+"y": 20.5
+},
+"M3D": [
+0.9925537109375,
+-0.118499755859375,
+0.0,
+0.0,
+0.118499755859375,
+0.9925537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-540.85,
+84.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 120.4,
+"y": 67.25
+},
+"M3D": [
+0.97235107421875,
+-0.215240478515625,
+0.0,
+0.0,
+0.215240478515625,
+0.97235107421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-668.4,
+22.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 116.35000000000001,
+"y": 11.450000000000001
+},
+"M3D": [
+0.998199462890625,
+-0.0568084716796875,
+0.0,
+0.0,
+0.3546600341796875,
+0.9812469482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.15,
+66.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 116.35,
+"y": 11.45
+},
+"M3D": [
+0.998199462890625,
+-0.0568084716796875,
+0.0,
+0.0,
+0.3546600341796875,
+0.9812469482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.15,
+66.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 162,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_4",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 13.85
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-492.05,
+85.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.400000000000003,
+"y": 13.9
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-490.4,
+86.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.35,
+"y": 13.9
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.0,
+84.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 8,
+"E": []
+},
+{
+"I": 14,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0191",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-500.0,
+78.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 168,
+"E": []
+}
+]
+},
+{
+"LN": "bf_bottom_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.35
+},
+"M3D": [
+0.9929046630859375,
+-0.1156005859375,
+0.0,
+0.0,
+0.1156005859375,
+0.9929046630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.9,
+62.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.9874114990234375,
+-0.15484619140625,
+0.0,
+0.0,
+0.15484619140625,
+0.9874114990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.15,
+65.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+0.9827728271484375,
+-0.1814422607421875,
+0.0,
+0.0,
+0.1814422607421875,
+0.9827728271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.35,
+65.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.4
+},
+"M3D": [
+0.999664306640625,
+-0.02239990234375,
+0.0,
+0.0,
+0.02239990234375,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.4,
+46.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 6,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.3,
+42.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.65,
+"y": 34.4
+},
+"M3D": [
+0.9936370849609375,
+0.10235595703125,
+0.0,
+0.0,
+-0.10235595703125,
+0.9936370849609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.6,
+37.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.55,
+"y": 34.35
+},
+"M3D": [
+0.9955902099609375,
+-0.0802764892578125,
+0.0,
+0.0,
+0.0802764892578125,
+0.9955902099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.25,
+57.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.5
+},
+"M3D": [
+0.956512451171875,
+-0.28729248046875,
+0.0,
+0.0,
+0.28729248046875,
+0.956512451171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-551.8,
+75.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 109.10000000000001,
+"y": 58.2
+},
+"M3D": [
+-0.0733795166015625,
+-0.9921112060546875,
+0.0,
+0.0,
+0.9921112060546875,
+-0.0733795166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-589.9,
+211.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.45
+},
+"M3D": [
+0.97039794921875,
+-0.23828125,
+0.0,
+0.0,
+0.23828125,
+0.97039794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-532.95,
+78.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 109.1,
+"y": 58.2
+},
+"M3D": [
+-0.0733795166015625,
+-0.9921112060546875,
+0.0,
+0.0,
+0.9921112060546875,
+-0.0733795166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-589.9,
+211.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.8,
+"y": 34.45
+},
+"M3D": [
+0.97039794921875,
+-0.23828125,
+0.0,
+0.0,
+0.23828125,
+0.97039794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-532.95,
+78.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 162,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "turntable",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_body",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.35000000000001,
+"y": 110.9
+},
+"M3D": [
+1.021728515625,
+0.0269317626953125,
+0.0,
+0.0,
+-0.0388336181640625,
+0.9765472412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.95,
+80.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.25,
+"y": 110.9
+},
+"M3D": [
+1.0220184326171876,
+0.00921630859375,
+0.0,
+0.0,
+-0.022216796875,
+0.9910888671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-604.3,
+81.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.25,
+"y": 110.80000000000001
+},
+"M3D": [
+1.02197265625,
+-0.0048065185546875,
+0.0,
+0.0,
+-0.0087738037109375,
+1.0091400146484376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-607.4,
+79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.25,
+77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 177.0,
+"y": 3.3000000000000004
+},
+"M3D": [
+1.0208740234375,
+-0.0311737060546875,
+0.0,
+0.0,
+0.0167083740234375,
+0.9764862060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.85,
+91.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 153.45000000000003,
+"y": 4.8500000000000009
+},
+"M3D": [
+0.99151611328125,
+-0.2443695068359375,
+0.0,
+0.0,
+0.220947265625,
+0.951141357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-612.35,
+126.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 148.70000000000003,
+"y": 13.05
+},
+"M3D": [
+1.017913818359375,
+-0.3834686279296875,
+0.0,
+0.0,
+0.3913421630859375,
+0.8950042724609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-616.55,
+146.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body falling back",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 70.2,
+"y": 63.65
+},
+"M3D": [
+0.8210906982421875,
+0.029144287109375,
+0.0,
+0.0,
+-0.026763916015625,
+-1.00146484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-481.8,
+200.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 59,
+"E": []
+},
+{
+"I": 81,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "red lazer",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 7.2,
+"y": 3.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-481.4,
+-15.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "red lazer",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 7.2,
+"y": 3.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.4,
+-18.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 100,
+"E": []
+}
+]
+},
+{
+"LN": "bf",
+"FR": [
+{
+"I": 0,
+"DU": 22,
+"E": []
+},
+{
+"I": 22,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "body falling back",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 70.25,
+"y": 63.7
+},
+"M3D": [
+0.9992523193359375,
+0.03546142578125,
+0.0,
+0.0,
+0.03546142578125,
+-0.9992523193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-495.95,
+187.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.900000000000003,
+"y": 30.95
+},
+"M3D": [
+1.006591796875,
+-0.099090576171875,
+0.0,
+0.0,
+0.2510833740234375,
+0.967132568359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-377.95,
+-13.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head less smooshed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 120.55,
+"y": 105.7
+},
+"M3D": [
+0.934783935546875,
+-0.06024169921875,
+0.0,
+0.0,
+0.046295166015625,
+0.98040771484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.3,
+-40.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder up left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.900000000000009,
+"y": 38.1
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-388.0,
+51.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm down ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 39.550000000000007,
+"y": 22.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-379.55,
+53.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand down left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 53.65,
+"y": 45.550000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-457.6,
+46.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand down right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.6,
+"y": 41.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-537.9,
+44.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body falling back",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 75.0,
+"y": 1.85
+},
+"M3D": [
+0.99688720703125,
+0.0752410888671875,
+0.0,
+0.0,
+0.1450042724609375,
+-1.0123443603515626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.6,
+184.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.0,
+"y": 30.900000000000003
+},
+"M3D": [
+0.98541259765625,
+-0.2260589599609375,
+0.0,
+0.0,
+0.25054931640625,
+0.9548187255859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-359.85,
+-24.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head less smooshed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 120.60000000000001,
+"y": 105.75
+},
+"M3D": [
+0.922760009765625,
+-0.1819915771484375,
+0.0,
+0.0,
+0.0988616943359375,
+0.976318359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-526.95,
+-35.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder up left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.95,
+"y": 38.050000000000007
+},
+"M3D": [
+0.986297607421875,
+-0.161773681640625,
+0.0,
+0.0,
+0.161773681640625,
+0.986297607421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-370.85,
+42.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm down ",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 71.55,
+"y": 24.8
+},
+"M3D": [
+0.9229736328125,
+0.378936767578125,
+0.0,
+0.0,
+-0.378936767578125,
+0.9229736328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-345.45,
+14.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand down left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 105.25,
+"y": 20.6
+},
+"M3D": [
+0.986175537109375,
+-0.14398193359375,
+0.0,
+0.0,
+0.14398193359375,
+0.986175537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-437.1,
+31.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand down right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.650000000000003,
+"y": 41.400000000000009
+},
+"M3D": [
+0.957794189453125,
+0.2843017578125,
+0.0,
+0.0,
+-0.2843017578125,
+0.957794189453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-548.15,
+10.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "body falling back",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 70.3,
+"y": 63.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-463.85,
+49.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.550000000000007
+},
+"M3D": [
+0.8940887451171875,
+-0.2375335693359375,
+0.0,
+0.0,
+0.2375335693359375,
+0.8940887451171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.65,
+-54.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand raised right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 93.2
+},
+"M3D": [
+0.65386962890625,
+-0.653228759765625,
+0.0,
+0.0,
+0.653228759765625,
+0.65386962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-589.25,
+-59.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hair spike single",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.1,
+"y": 32.25
+},
+"M3D": [
+1.0135650634765626,
+-0.0538177490234375,
+0.0,
+0.0,
+0.0538177490234375,
+1.0135650634765626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.8,
+24.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 3.0
+},
+"M3D": [
+1.0095672607421876,
+-0.103179931640625,
+0.0,
+0.0,
+0.26544189453125,
+0.99298095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-479.6,
+40.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 19.0,
+"y": 38.75
+},
+"M3D": [
+1.01263427734375,
+-0.0632781982421875,
+0.0,
+0.0,
+0.0632781982421875,
+1.01263427734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-325.05,
+-17.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat top piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 87.2,
+"y": -0.45
+},
+"M3D": [
+1.0133056640625,
+-0.0584259033203125,
+0.0,
+0.0,
+0.07794189453125,
+1.093505859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-496.0,
+-55.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat front piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.25,
+"y": 33.9
+},
+"M3D": [
+1.0137939453125,
+-0.0500640869140625,
+0.0,
+0.0,
+0.0500640869140625,
+1.0137939453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-490.6,
+-12.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mid piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 101.10000000000001,
+"y": 11.600000000000002
+},
+"M3D": [
+1.0135650634765626,
+-0.0538177490234375,
+0.0,
+0.0,
+0.0630340576171875,
+1.02069091796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-529.45,
+-19.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder raised w sleeve",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 14.55,
+"y": 94.45
+},
+"M3D": [
+0.90386962890625,
+-0.18597412109375,
+0.0,
+0.0,
+0.18597412109375,
+0.90386962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-386.05,
+22.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 13.85,
+"y": 81.95
+},
+"M3D": [
+-0.8063201904296875,
+-0.443878173828125,
+0.0,
+0.0,
+-0.443878173828125,
+0.8063201904296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-276.1,
+-25.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand raised left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 16.45,
+"y": 95.4
+},
+"M3D": [
+0.8909759521484375,
+0.235382080078125,
+0.0,
+0.0,
+-0.235382080078125,
+0.8909759521484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-314.7,
+-111.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face 2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.2,
+"y": 35.050000000000007
+},
+"M3D": [
+0.997406005859375,
+-0.10687255859375,
+0.0,
+0.0,
+0.168853759765625,
+0.8632659912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-456.1,
+61.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "body falling back",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 75.7,
+"y": 24.200000000000004
+},
+"M3D": [
+0.9870452880859375,
+0.15716552734375,
+0.0,
+0.0,
+-0.163482666015625,
+1.0267486572265626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-442.85,
+34.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.45
+},
+"M3D": [
+0.926483154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.926483154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-491.45,
+-60.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand raised right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.400000000000009,
+"y": 53.25
+},
+"M3D": [
+0.926483154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.926483154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.05,
+-122.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.0,
+"y": 30.900000000000003
+},
+"M3D": [
+0.99334716796875,
+0.10931396484375,
+0.0,
+0.0,
+-0.10931396484375,
+0.99334716796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.0,
+-2.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat top piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 93.45,
+"y": 90.75
+},
+"M3D": [
+0.99334716796875,
+0.10931396484375,
+0.0,
+0.0,
+-0.1060791015625,
+0.96380615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-456.85,
+-66.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hair spike single",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.1,
+"y": 32.300000000000007
+},
+"M3D": [
+0.99334716796875,
+0.10931396484375,
+0.0,
+0.0,
+-0.10931396484375,
+0.99334716796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-477.7,
+0.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 71.55,
+"y": 32.15
+},
+"M3D": [
+0.9946746826171875,
+0.0959625244140625,
+0.0,
+0.0,
+-0.0565032958984375,
+0.99847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-457.05,
+24.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat front piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.2,
+"y": 33.95
+},
+"M3D": [
+0.995330810546875,
+0.0933380126953125,
+0.0,
+0.0,
+-0.0933380126953125,
+0.995330810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-459.55,
+-31.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mid piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 105.55,
+"y": 2.5500000000000004
+},
+"M3D": [
+0.99334716796875,
+0.10931396484375,
+0.0,
+0.0,
+-0.1063232421875,
+0.966156005859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-496.3,
+-46.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder raised w sleeve",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.45,
+"y": 90.95
+},
+"M3D": [
+0.9229736328125,
+0.0285186767578125,
+0.0,
+0.0,
+-0.0285186767578125,
+0.9229736328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-353.8,
+20.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 21.700000000000004,
+"y": 41.35
+},
+"M3D": [
+0.9229736328125,
+0.0285186767578125,
+0.0,
+0.0,
+-0.0285186767578125,
+0.9229736328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-301.1,
+-30.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand raised left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.6,
+"y": 53.1
+},
+"M3D": [
+0.9229736328125,
+0.0285186767578125,
+0.0,
+0.0,
+-0.0285186767578125,
+0.9229736328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-309.7,
+-98.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face 2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 39.6,
+"y": 18.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-438.5,
+43.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "body falling back",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 75.7,
+"y": 24.25
+},
+"M3D": [
+0.93060302734375,
+0.3592529296875,
+0.0,
+0.0,
+-0.37371826171875,
+0.968048095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-402.25,
+27.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand raised right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.35,
+"y": 105.55
+},
+"M3D": [
+0.7864837646484375,
+0.34710693359375,
+0.0,
+0.0,
+-0.34710693359375,
+0.7864837646484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-424.25,
+-99.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 13.9,
+"y": 31.0
+},
+"M3D": [
+0.9246673583984375,
+0.18170166015625,
+0.0,
+0.0,
+-0.0873565673828125,
+0.7787322998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-282.85,
+18.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat top piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 172.60000000000003,
+"y": 108.30000000000001
+},
+"M3D": [
+0.927398681640625,
+0.1650238037109375,
+0.0,
+0.0,
+-0.21295166015625,
+0.74713134765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-408.8,
+-50.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hair spike single",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.1,
+"y": 32.25
+},
+"M3D": [
+0.9359130859375,
+0.11181640625,
+0.0,
+0.0,
+-0.11181640625,
+0.9359130859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-436.05,
+9.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.0,
+"y": -2.5
+},
+"M3D": [
+0.93182373046875,
+0.14141845703125,
+0.0,
+0.0,
+-0.2052459716796875,
+0.922119140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-415.25,
+30.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat front piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 2.95,
+"y": 35.050000000000007
+},
+"M3D": [
+0.9210205078125,
+0.15594482421875,
+0.0,
+0.0,
+-0.13055419921875,
+0.990997314453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-416.85,
+-28.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mid piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 117.10000000000001,
+"y": 105.45
+},
+"M3D": [
+0.9359130859375,
+0.11181640625,
+0.0,
+0.0,
+-0.11480712890625,
+0.960784912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-452.95,
+-40.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 8.05,
+"y": 24.700000000000004
+},
+"M3D": [
+-0.9828948974609375,
+0.1777801513671875,
+0.0,
+0.0,
+0.1777801513671875,
+0.9828948974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-412.0,
+78.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoulder raised w sleeve",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 42.75,
+"y": 53.95
+},
+"M3D": [
+0.8756103515625,
+0.2903900146484375,
+0.0,
+0.0,
+-0.2903900146484375,
+0.8756103515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-304.55,
+26.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 21.6,
+"y": 41.35
+},
+"M3D": [
+0.920989990234375,
+-0.03131103515625,
+0.0,
+0.0,
+0.03131103515625,
+0.920989990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-265.5,
+-2.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand raised left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.9,
+"y": 98.95
+},
+"M3D": [
+0.784637451171875,
+-0.48077392578125,
+0.0,
+0.0,
+0.48077392578125,
+0.784637451171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-318.1,
+-39.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "shoe right lowering",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 53.65,
+"y": 74.45
+},
+"M3D": [
+-0.9780731201171875,
+0.421173095703125,
+0.0,
+0.0,
+0.421173095703125,
+0.9780731201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-346.8,
+24.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.25,
+"y": 92.55
+},
+"M3D": [
+0.978912353515625,
+0.2009124755859375,
+0.0,
+0.0,
+-0.2009124755859375,
+0.978912353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-380.85,
+37.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.800000000000007,
+"y": 47.65
+},
+"M3D": [
+0.99755859375,
+0.0662078857421875,
+0.0,
+0.0,
+-0.0662078857421875,
+0.99755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-361.7,
+96.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.25,
+"y": 78.80000000000001
+},
+"M3D": [
+0.9991455078125,
+-0.02557373046875,
+0.0,
+0.0,
+0.02557373046875,
+0.9991455078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-301.6,
+67.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.45,
+"y": 78.60000000000001
+},
+"M3D": [
+0.99896240234375,
+-0.0308074951171875,
+0.0,
+0.0,
+0.0308074951171875,
+0.99896240234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.85,
+-20.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face extra",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.400000000000009,
+"y": 25.1
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-347.65,
+54.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.25,
+"y": 92.55
+},
+"M3D": [
+0.978912353515625,
+0.2009124755859375,
+0.0,
+0.0,
+-0.2009124755859375,
+0.978912353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-380.85,
+37.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.8,
+"y": 47.65
+},
+"M3D": [
+0.99755859375,
+0.0662078857421875,
+0.0,
+0.0,
+-0.0662078857421875,
+0.99755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-361.7,
+96.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.25,
+"y": 78.8
+},
+"M3D": [
+0.9991455078125,
+-0.02557373046875,
+0.0,
+0.0,
+0.02557373046875,
+0.9991455078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-301.6,
+67.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.45,
+"y": 78.6
+},
+"M3D": [
+0.99896240234375,
+-0.0308074951171875,
+0.0,
+0.0,
+0.0308074951171875,
+0.99896240234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.85,
+-20.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face extra",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.4,
+"y": 25.1
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-347.65,
+54.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.25,
+"y": 92.5
+},
+"M3D": [
+0.98455810546875,
+0.170562744140625,
+0.0,
+0.0,
+-0.170562744140625,
+0.98455810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-389.75,
+29.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.900000000000009,
+"y": 47.6
+},
+"M3D": [
+0.9990234375,
+0.0353546142578125,
+0.0,
+0.0,
+-0.0353546142578125,
+0.9990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-368.8,
+87.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.2,
+"y": 78.80000000000001
+},
+"M3D": [
+0.9988250732421875,
+0.022674560546875,
+0.0,
+0.0,
+-0.022674560546875,
+0.9988250732421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-303.35,
+55.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.45,
+"y": 78.65
+},
+"M3D": [
+0.9962005615234375,
+0.07354736328125,
+0.0,
+0.0,
+-0.07354736328125,
+0.9962005615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-402.1,
+-41.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.800000000000007,
+"y": 24.85
+},
+"M3D": [
+0.9962005615234375,
+0.07354736328125,
+0.0,
+0.0,
+-0.07354736328125,
+0.9962005615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-349.9,
+43.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.25,
+"y": 92.5
+},
+"M3D": [
+0.98455810546875,
+0.170562744140625,
+0.0,
+0.0,
+-0.170562744140625,
+0.98455810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-389.75,
+29.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 47.6
+},
+"M3D": [
+0.9990234375,
+0.0353546142578125,
+0.0,
+0.0,
+-0.0353546142578125,
+0.9990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-368.8,
+87.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.2,
+"y": 78.8
+},
+"M3D": [
+0.9988250732421875,
+0.022674560546875,
+0.0,
+0.0,
+-0.022674560546875,
+0.9988250732421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-303.35,
+55.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.45,
+"y": 78.65
+},
+"M3D": [
+0.9962005615234375,
+0.07354736328125,
+0.0,
+0.0,
+-0.07354736328125,
+0.9962005615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-402.1,
+-41.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.8,
+"y": 24.85
+},
+"M3D": [
+0.9962005615234375,
+0.07354736328125,
+0.0,
+0.0,
+-0.07354736328125,
+0.9962005615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-349.9,
+43.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 49.25,
+"y": 92.5
+},
+"M3D": [
+0.98455810546875,
+0.170562744140625,
+0.0,
+0.0,
+-0.170562744140625,
+0.98455810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-389.75,
+29.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 47.6
+},
+"M3D": [
+0.9990234375,
+0.0353546142578125,
+0.0,
+0.0,
+-0.0353546142578125,
+0.9990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-368.8,
+87.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 18.2,
+"y": 78.8
+},
+"M3D": [
+0.9988250732421875,
+0.022674560546875,
+0.0,
+0.0,
+-0.022674560546875,
+0.9988250732421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-303.35,
+55.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.45,
+"y": 78.65
+},
+"M3D": [
+0.9962005615234375,
+0.07354736328125,
+0.0,
+0.0,
+-0.07354736328125,
+0.9962005615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-402.1,
+-41.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 40.8,
+"y": 24.85
+},
+"M3D": [
+0.9962005615234375,
+0.07354736328125,
+0.0,
+0.0,
+-0.07354736328125,
+0.9962005615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-349.9,
+43.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.65
+},
+"M3D": [
+0.999969482421875,
+0.0049591064453125,
+0.0,
+0.0,
+-0.0049591064453125,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-409.5,
+48.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+0.999969482421875,
+0.0049591064453125,
+0.0,
+0.0,
+-0.0049591064453125,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-374.7,
+91.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.65
+},
+"M3D": [
+0.999969482421875,
+0.0049591064453125,
+0.0,
+0.0,
+-0.0049591064453125,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-309.3,
+57.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.60000000000001
+},
+"M3D": [
+0.999847412109375,
+0.01409912109375,
+0.0,
+0.0,
+-0.01409912109375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-419.0,
+-35.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 44.2
+},
+"M3D": [
+0.2655029296875,
+1.17364501953125,
+0.0,
+0.0,
+-0.9741668701171875,
+0.2203826904296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-383.4,
+11.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.800000000000007,
+"y": 24.900000000000003
+},
+"M3D": [
+0.999847412109375,
+0.01409912109375,
+0.0,
+0.0,
+-0.01409912109375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-361.85,
+45.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.65
+},
+"M3D": [
+0.999969482421875,
+0.0049591064453125,
+0.0,
+0.0,
+-0.0049591064453125,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-409.5,
+48.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+0.999969482421875,
+0.0049591064453125,
+0.0,
+0.0,
+-0.0049591064453125,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-374.7,
+91.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.65
+},
+"M3D": [
+0.999969482421875,
+0.0049591064453125,
+0.0,
+0.0,
+-0.0049591064453125,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-309.3,
+57.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.6
+},
+"M3D": [
+0.999847412109375,
+0.01409912109375,
+0.0,
+0.0,
+-0.01409912109375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-419.0,
+-35.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 44.2
+},
+"M3D": [
+0.2655029296875,
+1.17364501953125,
+0.0,
+0.0,
+-0.9741668701171875,
+0.2203826904296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-383.4,
+11.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.8,
+"y": 24.9
+},
+"M3D": [
+0.999847412109375,
+0.01409912109375,
+0.0,
+0.0,
+-0.01409912109375,
+0.999847412109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-361.85,
+45.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 43.95
+},
+"M3D": [
+0.7807464599609375,
+0.6215667724609375,
+0.0,
+0.0,
+-0.235137939453125,
+0.97967529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-440.9,
+14.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.900000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 43.95
+},
+"M3D": [
+0.7807464599609375,
+0.6215667724609375,
+0.0,
+0.0,
+-0.235137939453125,
+0.97967529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-440.9,
+14.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 44.050000000000007
+},
+"M3D": [
+0.96405029296875,
+0.25250244140625,
+0.0,
+0.0,
+-0.25250244140625,
+0.96405029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+61.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.900000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pant over table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.75,
+"y": 44.05
+},
+"M3D": [
+0.96405029296875,
+0.25250244140625,
+0.0,
+0.0,
+-0.25250244140625,
+0.96405029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.4,
+61.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-407.15,
+49.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-372.75,
+92.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-307.0,
+59.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.55
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-417.3,
+-34.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 33.9,
+"y": -1.55
+},
+"M3D": [
+0.99957275390625,
+-0.003936767578125,
+0.0,
+0.0,
+0.003936767578125,
+0.99957275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-377.2,
+128.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.900000000000003
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-360.1,
+47.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-407.15,
+49.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-372.75,
+92.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-307.0,
+59.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.55
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-417.3,
+-34.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 33.9,
+"y": -1.55
+},
+"M3D": [
+0.99957275390625,
+-0.003936767578125,
+0.0,
+0.0,
+0.003936767578125,
+0.99957275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-377.2,
+128.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-360.1,
+47.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.900000000000009,
+"y": 34.550000000000007
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.900000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 60,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 61,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 62,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.900000000000009,
+"y": 34.550000000000007
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.900000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 63,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 65,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 67,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 68,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 70,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 72,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 73,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 74,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 75,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 76,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 77,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 78,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 80,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 82,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 85,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 86,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 88,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 89,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 90,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 91,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 92,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 94,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 95,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 97,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 100,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 102,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 103,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 105,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 106,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 107,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 108,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 109,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 110,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 111,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 112,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 113,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 114,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 115,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 116,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 117,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 118,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 119,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 120,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 121,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 122,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 123,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 124,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 125,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 126,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 127,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 128,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 129,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 130,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 131,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 132,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 133,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 134,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 135,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 136,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 137,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 138,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 139,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 140,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 141,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 142,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 143,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 144,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 145,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 146,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 147,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 148,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 149,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 150,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 151,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 152,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 153,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 154,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 155,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 156,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 157,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 158,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 159,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 160,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 161,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 162,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 163,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 164,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 165,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 166,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 167,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 168,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 169,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 170,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 171,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 172,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 173,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 174,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 175,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 176,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 177,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 178,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 179,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 180,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 181,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 182,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 183,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "body chill",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "LP",
+"TRP": {
+"x": 48.85,
+"y": 47.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-375.8,
+91.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.25,
+"y": 51.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-310.55,
+57.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-422.05,
+-34.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-501.6,
+88.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "leg BF",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 48.9,
+"y": 34.55
+},
+"M3D": [
+0.99786376953125,
+-0.0619964599609375,
+0.0,
+0.0,
+0.0619964599609375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.35,
+125.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face default",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "LP",
+"TRP": {
+"x": 40.85,
+"y": 24.9
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-363.8,
+45.45,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_21",
+"FR": [
+{
+"I": 0,
+"DU": 62,
+"E": []
+},
+{
+"I": 62,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.1,
+"y": 68.65
+},
+"M3D": [
+0.982757568359375,
+0.2661590576171875,
+0.0,
+0.0,
+-0.06024169921875,
+0.9952392578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-404.15,
+27.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 24.1,
+"y": 0.8
+},
+"M3D": [
+-0.9111175537109375,
+-0.112548828125,
+0.0,
+0.0,
+-0.16497802734375,
+1.1363983154296876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-370.65,
+-26.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.25,
+"y": 132.05
+},
+"M3D": [
+0.33343505859375,
+0.9332733154296875,
+0.0,
+0.0,
+-0.9332733154296875,
+0.33343505859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-287.75,
+-86.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 64,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.1,
+"y": 68.7
+},
+"M3D": [
+0.58636474609375,
+0.82977294921875,
+0.0,
+0.0,
+-0.67938232421875,
+0.7269287109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-339.8,
+15.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 24.05,
+"y": 0.75
+},
+"M3D": [
+-0.90386962890625,
+0.1612396240234375,
+0.0,
+0.0,
+0.1776123046875,
+1.1346282958984376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-385.7,
+-35.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.25,
+"y": 132.05
+},
+"M3D": [
+0.97198486328125,
+0.1854248046875,
+0.0,
+0.0,
+-0.1854248046875,
+0.97198486328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-416.3,
+-153.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 66,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 55.15,
+"y": 68.7
+},
+"M3D": [
+0.34991455078125,
+0.9531097412109375,
+0.0,
+0.0,
+-0.84454345703125,
+0.524658203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-315.5,
+22.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 24.05,
+"y": 0.8
+},
+"M3D": [
+-0.908355712890625,
+0.1330413818359375,
+0.0,
+0.0,
+0.1422119140625,
+1.13946533203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-382.95,
+-35.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 28.25,
+"y": 132.0
+},
+"M3D": [
+0.98565673828125,
+0.061431884765625,
+0.0,
+0.0,
+-0.061431884765625,
+0.98565673828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-429.25,
+-147.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 69,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.5
+},
+"M3D": [
+0.9239501953125,
+-0.05517578125,
+0.0,
+0.0,
+0.05517578125,
+0.9239501953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-421.55,
+-62.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.15,
+"y": 41.6
+},
+"M3D": [
+0.9989013671875,
+-0.0341949462890625,
+0.0,
+0.0,
+0.0341949462890625,
+0.9989013671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-503.3,
+-76.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.35,
+"y": 33.05
+},
+"M3D": [
+0.992919921875,
+0.11041259765625,
+0.0,
+0.0,
+-0.11041259765625,
+0.992919921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-452.05,
+-114.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 67.4,
+"y": 35.9
+},
+"M3D": [
+0.2580413818359375,
+0.9614105224609375,
+0.0,
+0.0,
+-0.9614105224609375,
+0.2580413818359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-291.8,
+40.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 71,
+"DU": 8,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.45
+},
+"M3D": [
+0.9194183349609375,
+-0.10833740234375,
+0.0,
+0.0,
+0.10833740234375,
+0.9194183349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.6,
+-60.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.1,
+"y": 41.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-506.4,
+-80.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 31.1,
+"y": 20.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-459.2,
+-108.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.35,
+"y": 49.65
+},
+"M3D": [
+0.33740234375,
+0.936767578125,
+0.0,
+0.0,
+-0.936767578125,
+0.33740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-297.25,
+38.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 79,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.45
+},
+"M3D": [
+0.9194183349609375,
+-0.10833740234375,
+0.0,
+0.0,
+0.10833740234375,
+0.9194183349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.6,
+-60.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.35,
+"y": 49.65
+},
+"M3D": [
+0.33740234375,
+0.936767578125,
+0.0,
+0.0,
+-0.936767578125,
+0.33740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-297.25,
+38.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.1,
+"y": 41.7
+},
+"M3D": [
+0.9979248046875,
+0.061187744140625,
+0.0,
+0.0,
+-0.061187744140625,
+0.9979248046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-505.15,
+-86.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.7,
+"y": 33.75
+},
+"M3D": [
+0.99151611328125,
+0.1266326904296875,
+0.0,
+0.0,
+-0.1266326904296875,
+0.99151611328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-453.75,
+-115.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 81,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.45
+},
+"M3D": [
+0.9194183349609375,
+-0.10833740234375,
+0.0,
+0.0,
+0.10833740234375,
+0.9194183349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.6,
+-60.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.1,
+"y": 41.65
+},
+"M3D": [
+0.999237060546875,
+-0.0355987548828125,
+0.0,
+0.0,
+0.0355987548828125,
+0.999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-506.7,
+-76.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb press",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 71.55,
+"y": 20.45
+},
+"M3D": [
+1.0187225341796876,
+-0.19219970703125,
+0.0,
+0.0,
+0.1527099609375,
+0.9080810546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-477.25,
+-79.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.35,
+"y": 49.65
+},
+"M3D": [
+0.33740234375,
+0.936767578125,
+0.0,
+0.0,
+-0.936767578125,
+0.33740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-297.25,
+38.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 83,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.45
+},
+"M3D": [
+0.9194183349609375,
+-0.10833740234375,
+0.0,
+0.0,
+0.10833740234375,
+0.9194183349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.6,
+-60.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.1,
+"y": 41.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-506.4,
+-80.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb press",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.0,
+"y": 22.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-472.6,
+-95.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.35,
+"y": 49.65
+},
+"M3D": [
+0.33740234375,
+0.936767578125,
+0.0,
+0.0,
+-0.936767578125,
+0.33740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-297.25,
+38.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 84,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.45
+},
+"M3D": [
+0.9194183349609375,
+-0.10833740234375,
+0.0,
+0.0,
+0.10833740234375,
+0.9194183349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.6,
+-60.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.1,
+"y": 41.7
+},
+"M3D": [
+0.9979248046875,
+0.061187744140625,
+0.0,
+0.0,
+-0.061187744140625,
+0.9979248046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-505.15,
+-86.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.7,
+"y": 33.75
+},
+"M3D": [
+0.99151611328125,
+0.1266326904296875,
+0.0,
+0.0,
+-0.1266326904296875,
+0.99151611328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-453.75,
+-115.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.35,
+"y": 49.65
+},
+"M3D": [
+0.33740234375,
+0.936767578125,
+0.0,
+0.0,
+-0.936767578125,
+0.33740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-297.25,
+38.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 87,
+"DU": 6,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.1,
+"y": 43.45
+},
+"M3D": [
+0.9194183349609375,
+-0.10833740234375,
+0.0,
+0.0,
+0.10833740234375,
+0.9194183349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-425.6,
+-60.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.1,
+"y": 41.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-506.4,
+-80.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 31.1,
+"y": 20.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-459.2,
+-108.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.35,
+"y": 49.65
+},
+"M3D": [
+0.33740234375,
+0.936767578125,
+0.0,
+0.0,
+-0.936767578125,
+0.33740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-297.25,
+38.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 93,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.150000000000003,
+"y": 43.45
+},
+"M3D": [
+0.92529296875,
+0.013031005859375,
+0.0,
+0.0,
+-0.013031005859375,
+0.92529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-417.3,
+-61.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.1,
+"y": 41.6
+},
+"M3D": [
+0.9971771240234375,
+0.0657958984375,
+0.0,
+0.0,
+-0.0657958984375,
+0.9971771240234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-496.7,
+-83.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.7,
+"y": 32.95
+},
+"M3D": [
+0.9989013671875,
+-0.01708984375,
+0.0,
+0.0,
+0.01708984375,
+0.9989013671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-450.6,
+-103.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.35,
+"y": 57.550000000000007
+},
+"M3D": [
+0.4561004638671875,
+0.88372802734375,
+0.0,
+0.0,
+-0.88372802734375,
+0.4561004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-306.95,
+34.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 96,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.150000000000003,
+"y": 43.45
+},
+"M3D": [
+0.9088592529296875,
+0.16912841796875,
+0.0,
+0.0,
+-0.16912841796875,
+0.9088592529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-407.8,
+-63.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.0,
+"y": 41.6
+},
+"M3D": [
+0.9915618896484375,
+0.1125335693359375,
+0.0,
+0.0,
+-0.1125335693359375,
+0.9915618896484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.05,
+-85.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.65,
+"y": 32.95
+},
+"M3D": [
+0.98779296875,
+-0.13592529296875,
+0.0,
+0.0,
+0.13592529296875,
+0.98779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.05,
+-93.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.35,
+"y": 57.550000000000007
+},
+"M3D": [
+0.51715087890625,
+0.849151611328125,
+0.0,
+0.0,
+-0.849151611328125,
+0.51715087890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-313.15,
+31.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 98,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 70.7,
+"y": 86.10000000000001
+},
+"M3D": [
+0.96124267578125,
+0.271484375,
+0.0,
+0.0,
+-0.271484375,
+0.96124267578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-385.0,
+18.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "forearm right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 25.150000000000003,
+"y": 43.45
+},
+"M3D": [
+0.92529296875,
+0.013031005859375,
+0.0,
+0.0,
+-0.013031005859375,
+0.92529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-407.05,
+18.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote hand upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.050000000000007,
+"y": 41.6
+},
+"M3D": [
+0.17718505859375,
+1.0462799072265626,
+0.0,
+0.0,
+-0.950531005859375,
+-0.0120697021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-372.55,
+-89.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "remote thumb up",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 56.7,
+"y": 32.95
+},
+"M3D": [
+0.68182373046875,
+0.8685760498046875,
+0.0,
+0.0,
+-0.6829833984375,
+0.5799560546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-374.75,
+-49.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 99,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 57.6,
+"y": 71.10000000000001
+},
+"M3D": [
+0.996826171875,
+0.0732574462890625,
+0.0,
+0.0,
+-0.0732574462890625,
+0.996826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-406.2,
+32.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 101,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.800000000000007,
+"y": 88.0
+},
+"M3D": [
+0.999664306640625,
+0.0224761962890625,
+0.0,
+0.0,
+-0.0224761962890625,
+0.999664306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-408.8,
+45.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 104,
+"DU": 80,
+"E": [
+{
+"SI": {
+"SN": "arm chill right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 34.4,
+"y": 49.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-410.8,
+48.55,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "chair",
+"FR": [
+{
+"I": 0,
+"DU": 15,
+"E": []
+},
+{
+"I": 15,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.75,
+"y": 112.2
+},
+"M3D": [
+0.6489105224609375,
+-0.7577972412109375,
+0.0,
+0.0,
+0.4725341796875,
+0.9820556640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-523.95,
+-310.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.8,
+"y": 112.2
+},
+"M3D": [
+0.44854736328125,
+-1.2107391357421876,
+0.0,
+0.0,
+0.3065643310546875,
+1.3897857666015626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-474.2,
+-19.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 102.2,
+"y": 218.0
+},
+"M3D": [
+1.10821533203125,
+-0.22265625,
+0.0,
+0.0,
+0.2974700927734375,
+0.8787841796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.1,
+77.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 102.15,
+"y": 218.0
+},
+"M3D": [
+0.981048583984375,
+-0.0963134765625,
+0.0,
+0.0,
+0.1785888671875,
+1.0171051025390626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-479.5,
+6.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 106.55,
+"y": 171.9
+},
+"M3D": [
+0.99615478515625,
+-0.0841827392578125,
+0.0,
+0.0,
+0.13055419921875,
+0.9922332763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-472.6,
+27.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "office chair upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 106.55,
+"y": 171.9
+},
+"M3D": [
+0.9986572265625,
+-0.0484466552734375,
+0.0,
+0.0,
+0.094940185546875,
+0.99639892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-459.75,
+34.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "office chair upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 106.65,
+"y": 171.9
+},
+"M3D": [
+0.9999237060546875,
+-0.0088958740234375,
+0.0,
+0.0,
+0.0280914306640625,
+0.999755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-430.85,
+21.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "office chair upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 96.0,
+"y": 92.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-424.1,
+24.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair upright",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 91.85000000000001,
+"y": 172.35
+},
+"M3D": [
+0.9969329833984375,
+0.0869140625,
+0.0,
+0.0,
+-0.1377410888671875,
+0.990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-391.2,
+22.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.75,
+"y": 112.2
+},
+"M3D": [
+0.99755859375,
+0.0662078857421875,
+0.0,
+0.0,
+-0.0662078857421875,
+0.99755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-480.05,
+93.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.70000000000003,
+"y": 112.2
+},
+"M3D": [
+0.9990234375,
+0.0353546142578125,
+0.0,
+0.0,
+-0.0353546142578125,
+0.9990234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-487.1,
+88.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.70000000000003,
+"y": 112.25
+},
+"M3D": [
+0.999969482421875,
+0.0049591064453125,
+0.0,
+0.0,
+-0.0049591064453125,
+0.999969482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-493.05,
+96.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 4,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.70000000000003,
+"y": 112.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-494.1,
+96.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.70000000000003,
+"y": 112.2
+},
+"M3D": [
+0.9998626708984375,
+0.0135345458984375,
+0.0,
+0.0,
+-0.0135345458984375,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-491.1,
+96.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 136,
+"E": [
+{
+"SI": {
+"SN": "office chair",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 146.70000000000003,
+"y": 112.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-494.1,
+96.9,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot wag",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 65.35,
+"y": 60.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-394.3,
+113.8,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 2.15,
+"y": 20.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-394.3,
+114.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 11.35,
+"y": 37.25
+},
+"M3D": [
+1.0,
+0.016754150390625,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-394.3,
+114.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "foot rested right 2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 4.3,
+"y": 10.65
+},
+"M3D": [
+0.9998626708984375,
+0.0155487060546875,
+0.0,
+0.0,
+-0.009033203125,
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-392.7,
+123.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot rested right 2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 63.5,
+"y": 54.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-392.8,
+123.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "foot rested right 2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 10.700000000000001,
+"y": 21.85
+},
+"M3D": [
+1.0,
+-0.01031494140625,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-392.8,
+122.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 2.15,
+"y": 20.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-394.3,
+114.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "foot rested right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 65.35,
+"y": 60.45
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-394.3,
+113.8,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot rested right",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0186",
+"M3D": [
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9998626708984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot rested right 2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0218",
+"M3D": [
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9999237060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot rested light",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0180",
+"M3D": [
+0.888671875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.888671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "pant over table",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0181",
+"M3D": [
+0.831024169921875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.831024169921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.3,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shoe raised left",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0182",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shoe right lowering",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0183",
+"M3D": [
+0.9390411376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9390411376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot raised right",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0184",
+"M3D": [
+0.9323883056640625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9323883056640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "leg BF",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0185",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "crt",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0187",
+"M3D": [
+0.6310577392578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6310577392578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "chill face 1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0190",
+"M3D": [
+0.8569488525390625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8569488525390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body falling back",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0192",
+"M3D": [
+0.961822509765625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.961822509765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.8,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "red lazer",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0193",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shoulder up left",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0194",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+5.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "forearm down ",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0195",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+3.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand down left",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0196",
+"M3D": [
+0.960784912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.960784912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+8.6,
+6.7,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand down right",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0197",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.0,
+4.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "forearm right",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0198",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand raised right",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0199",
+"M3D": [
+0.8914031982421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8914031982421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hair spike single",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0200",
+"M3D": [
+0.985198974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.985198974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "face piece",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0201",
+"M3D": [
+0.972900390625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.972900390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hat top piece",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0202",
+"M3D": [
+0.912139892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.912139892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hat front piece",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0203",
+"M3D": [
+0.9851837158203125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9851837158203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.95,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head mid piece",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0204",
+"M3D": [
+0.97784423828125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.97784423828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shoulder raised w sleeve",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0205",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "forearm left",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0206",
+"M3D": [
+0.8707427978515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8707427978515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand raised left",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0207",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "chill face 2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0208",
+"M3D": [
+0.9864501953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9864501953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.9,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm chill right",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0209",
+"M3D": [
+0.982147216796875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.982147216796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body chill",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 39,
+"E": [
+{
+"ASI": {
+"N": "0219",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-3.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm chill left",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0210",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "head BF relaxed",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 32,
+"E": [
+{
+"ASI": {
+"N": "0220",
+"M3D": [
+0.610565185546875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.610565185546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "chill face extra",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0211",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "chill face default",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 33,
+"E": [
+{
+"ASI": {
+"N": "0221",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0222",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+5.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0223",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-3.0,
+22.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0224",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+20.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0225",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+17.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0226",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+-4.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 6,
+"E": [
+{
+"ASI": {
+"N": "0221",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "remote hand under",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0212",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "remote hand upright",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0213",
+"M3D": [
+0.9423370361328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9423370361328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "remote thumb up",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0214",
+"M3D": [
+0.905609130859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.905609130859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "remote thumb press",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0215",
+"M3D": [
+0.964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.964599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "office chair",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0216",
+"M3D": [
+0.70263671875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.70263671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "office chair upright",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0217",
+"M3D": [
+0.8846588134765625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8846588134765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "Boyfriend DJ to CS",
+"TL": {
+"L": [
+{
+"LN": "bf_face",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.35,
+"y": 42.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.5,
+3.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.45,
+"y": 13.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.45,
+71.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bf eyes 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.4,
+"y": 42.300000000000007
+},
+"M3D": [
+0.97344970703125,
+0.225616455078125,
+0.0,
+0.0,
+-0.225616455078125,
+0.97344970703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-530.4,
+-1.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf mouth 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 30.55,
+"y": 13.85
+},
+"M3D": [
+0.97344970703125,
+0.225616455078125,
+0.0,
+0.0,
+-0.225616455078125,
+0.97344970703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.75,
+73.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm cringe r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 76.3,
+"y": 41.400000000000009
+},
+"M3D": [
+0.72442626953125,
+0.82275390625,
+0.0,
+0.0,
+-0.82275390625,
+0.72442626953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-641.3,
+0.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.25,
+"y": 48.85
+},
+"M3D": [
+0.4854736328125,
+0.95684814453125,
+0.0,
+0.0,
+0.9107513427734375,
+-0.49127197265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-439.25,
+122.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head SMOOSHED",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 136.55,
+"y": 79.4
+},
+"M3D": [
+0.902099609375,
+-0.131195068359375,
+0.0,
+0.0,
+0.280426025390625,
+1.0244140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-630.6,
+52.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.300000000000007,
+"y": 35.0
+},
+"M3D": [
+0.7684173583984375,
+1.046112060546875,
+0.0,
+0.0,
+1.046112060546875,
+-0.7684173583984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-463.85,
+66.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.25,
+"y": 48.85
+},
+"M3D": [
+1.0197601318359376,
+-0.325927734375,
+0.0,
+0.0,
+0.289520263671875,
+0.9910736083984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-420.45,
+111.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand raised right",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.5,
+"y": 53.45
+},
+"M3D": [
+0.9451751708984375,
+-0.592529296875,
+0.0,
+0.0,
+0.49212646484375,
+1.00811767578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-652.25,
+102.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head less smooshed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.05,
+"y": 104.25
+},
+"M3D": [
+0.96612548828125,
+-0.2476654052734375,
+0.0,
+0.0,
+0.2476654052734375,
+0.96612548828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-604.55,
+42.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand shrug r",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.35,
+"y": 34.95
+},
+"M3D": [
+0.4756317138671875,
+1.343994140625,
+0.0,
+0.0,
+1.1939697265625,
+-0.5066986083984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-458.95,
+107.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 82.75,
+"y": -0.8
+},
+"M3D": [
+1.0276947021484376,
+-0.3699951171875,
+0.0,
+0.0,
+0.011627197265625,
+1.22314453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-576.2,
+131.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head less smooshed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.05,
+"y": 104.35000000000001
+},
+"M3D": [
+0.82037353515625,
+-0.4974365234375,
+0.0,
+0.0,
+0.5601654052734375,
+0.823883056640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.1,
+52.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 114.25,
+"y": 24.95
+},
+"M3D": [
+0.770843505859375,
+-0.5040283203125,
+0.0,
+0.0,
+0.71588134765625,
+0.8272705078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-503.65,
+125.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm swoopin in",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 82.80000000000001,
+"y": -0.65
+},
+"M3D": [
+1.03179931640625,
+-0.0147705078125,
+0.0,
+0.0,
+-0.08343505859375,
+1.3492431640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.15,
+50.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.0,
+"y": 30.95
+},
+"M3D": [
+1.01300048828125,
+0.008453369140625,
+0.0,
+0.0,
+0.008453369140625,
+-1.01300048828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-397.35,
+60.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat top piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 93.45,
+"y": 90.85000000000001
+},
+"M3D": [
+0.938629150390625,
+-0.381103515625,
+0.0,
+0.0,
+0.3697357177734375,
+0.9107666015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.85,
+-20.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hair spike single",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 29.150000000000003,
+"y": 32.300000000000007
+},
+"M3D": [
+0.938629150390625,
+-0.381103515625,
+0.0,
+0.0,
+0.381103515625,
+0.938629150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-554.95,
+49.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "face piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 71.5,
+"y": 32.1
+},
+"M3D": [
+0.9333953857421875,
+-0.3936614990234375,
+0.0,
+0.0,
+0.4306640625,
+0.91778564453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-525.05,
+61.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "bf bent arm",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.300000000000007,
+"y": 48.800000000000007
+},
+"M3D": [
+0.9027557373046875,
+-0.46954345703125,
+0.0,
+0.0,
+0.4307861328125,
+0.8817596435546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-420.7,
+38.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hat front piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.10000000000001,
+"y": 33.800000000000007
+},
+"M3D": [
+0.9180755615234375,
+-0.39007568359375,
+0.0,
+0.0,
+0.39007568359375,
+0.9180755615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-547.45,
+14.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head mid piece",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 105.45,
+"y": 2.5500000000000004
+},
+"M3D": [
+0.938629150390625,
+-0.381103515625,
+0.0,
+0.0,
+0.3706512451171875,
+0.9129638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-594.2,
+17.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "chill face 2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 39.550000000000007,
+"y": 18.0
+},
+"M3D": [
+0.89190673828125,
+-0.4818115234375,
+0.0,
+0.0,
+0.4818115234375,
+0.89190673828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.25,
+69.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "hand down left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 108.25,
+"y": 17.400000000000003
+},
+"M3D": [
+0.9499359130859375,
+-0.3135223388671875,
+0.0,
+0.0,
+0.2183685302734375,
+1.0176239013671876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-455.05,
+94.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 8,
+"E": []
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+0.9747772216796875,
+0.277099609375,
+0.0,
+0.0,
+-0.2355194091796875,
+1.199951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.2,
+-111.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.55,
+"y": 79.25
+},
+"M3D": [
+0.8984222412109375,
+-0.3151092529296875,
+0.0,
+0.0,
+0.15130615234375,
+1.1334381103515626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-429.45,
+36.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.65,
+"y": 21.3
+},
+"M3D": [
+0.87432861328125,
+0.174072265625,
+0.0,
+0.0,
+-0.0573577880859375,
+1.039520263671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-473.6,
+42.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.2,
+"y": 20.200000000000004
+},
+"M3D": [
+0.9423675537109375,
+0.300323486328125,
+0.0,
+0.0,
+-0.073394775390625,
+1.099365234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-463.3,
+-6.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 112.5,
+"y": 78.55
+},
+"M3D": [
+0.9747772216796875,
+0.277099609375,
+0.0,
+0.0,
+-0.2355194091796875,
+1.199951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-504.2,
+-111.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.55,
+"y": 79.25
+},
+"M3D": [
+0.8984222412109375,
+-0.3151092529296875,
+0.0,
+0.0,
+0.15130615234375,
+1.1334381103515626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-429.45,
+36.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.65,
+"y": 21.3
+},
+"M3D": [
+0.87432861328125,
+0.174072265625,
+0.0,
+0.0,
+-0.0573577880859375,
+1.039520263671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-473.6,
+42.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.2,
+"y": 20.2
+},
+"M3D": [
+0.9423675537109375,
+0.300323486328125,
+0.0,
+0.0,
+-0.073394775390625,
+1.099365234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-463.3,
+-6.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 23,
+"E": []
+}
+]
+},
+{
+"LN": "bf_top_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.8,
+"y": 70.2
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-572.8,
+-48.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend top head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 130.75,
+"y": 70.25
+},
+"M3D": [
+0.97344970703125,
+0.225616455078125,
+0.0,
+0.0,
+-0.225616455078125,
+0.97344970703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.55,
+-63.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 40,
+"E": []
+}
+]
+},
+{
+"LN": "bf_arms",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.300000000000007
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 78.25,
+"y": 67.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-539.3,
+69.25,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.6,
+-71.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "DJ arm",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 78.2,
+"y": 67.05
+},
+"M3D": [
+0.9966278076171875,
+-0.0786895751953125,
+0.0,
+0.0,
+0.362060546875,
+0.9742431640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.2,
+78.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "rave hand",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 57.7,
+"y": 44.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.099945068359375,
+1.1680908203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-625.65,
+-69.7,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 40,
+"E": []
+}
+]
+},
+{
+"LN": "bf_bottom_head",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.7,
+"y": 34.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-534.3,
+42.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend bottom head",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 73.75,
+"y": 34.45
+},
+"M3D": [
+0.97344970703125,
+0.225616455078125,
+0.0,
+0.0,
+-0.225616455078125,
+0.97344970703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-547.65,
+33.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 40,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "turntable",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "bf_body",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-606.25,
+77.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.10000000000001
+},
+"M3D": [
+0.996856689453125,
+-0.07574462890625,
+0.0,
+0.0,
+0.184814453125,
+0.988555908203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-622.0,
+98.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.0
+},
+"M3D": [
+0.981689453125,
+-0.18719482421875,
+0.0,
+0.0,
+0.2205657958984375,
+0.8635711669921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-604.75,
+141.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 110.95
+},
+"M3D": [
+0.981689453125,
+-0.18719482421875,
+0.0,
+0.0,
+0.104248046875,
+0.8857421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-584.85,
+133.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.5,
+"y": 110.95
+},
+"M3D": [
+0.98760986328125,
+-0.1522674560546875,
+0.0,
+0.0,
+0.0521697998046875,
+0.9783935546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.7,
+105.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "boyfriend dj body",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.45,
+"y": 111.05
+},
+"M3D": [
+0.99755859375,
+-0.06634521484375,
+0.0,
+0.0,
+0.06634521484375,
+0.99755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-592.35,
+79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.400000000000009,
+"y": 42.35
+},
+"M3D": [
+0.2379150390625,
+0.9705047607421875,
+0.0,
+0.0,
+0.9705047607421875,
+-0.2379150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.15,
+116.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 81.5,
+"y": 80.60000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.55,
+-107.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.0,
+"y": 49.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.6,
+15.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 81.4,
+"y": 47.35
+},
+"M3D": [
+0.999267578125,
+-0.034912109375,
+0.0,
+0.0,
+0.034912109375,
+0.999267578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.15,
+-38.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.400000000000009,
+"y": 42.400000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-471.6,
+60.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 112.60000000000001,
+"y": 78.5
+},
+"M3D": [
+1.06585693359375,
+0.129791259765625,
+0.0,
+0.0,
+-0.142578125,
+1.06494140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-531.8,
+-139.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.6,
+"y": 21.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-482.4,
+-12.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.25,
+"y": 20.1
+},
+"M3D": [
+0.9969940185546875,
+0.0742340087890625,
+0.0,
+0.0,
+-0.0742340087890625,
+0.9969940185546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.35,
+-56.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front low detail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.1,
+"y": 41.85
+},
+"M3D": [
+1.184539794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.184539794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.2,
+102.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.4,
+"y": 42.35
+},
+"M3D": [
+0.2379150390625,
+0.9705047607421875,
+0.0,
+0.0,
+0.9705047607421875,
+-0.2379150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.15,
+116.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 81.5,
+"y": 80.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.55,
+-107.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.0,
+"y": 49.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.6,
+15.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 81.4,
+"y": 47.35
+},
+"M3D": [
+0.999267578125,
+-0.034912109375,
+0.0,
+0.0,
+0.034912109375,
+0.999267578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.15,
+-38.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.4,
+"y": 42.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-471.6,
+60.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 112.6,
+"y": 78.5
+},
+"M3D": [
+1.06585693359375,
+0.129791259765625,
+0.0,
+0.0,
+-0.142578125,
+1.06494140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-531.8,
+-139.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.6,
+"y": 21.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-482.4,
+-12.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.25,
+"y": 20.1
+},
+"M3D": [
+0.9969940185546875,
+0.0742340087890625,
+0.0,
+0.0,
+-0.0742340087890625,
+0.9969940185546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.35,
+-56.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front low detail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.1,
+"y": 41.85
+},
+"M3D": [
+1.184539794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.184539794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.2,
+102.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.4,
+"y": 42.35
+},
+"M3D": [
+0.2379150390625,
+0.9705047607421875,
+0.0,
+0.0,
+0.9705047607421875,
+-0.2379150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.15,
+116.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 81.5,
+"y": 80.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.55,
+-107.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.0,
+"y": 49.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.6,
+15.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 81.4,
+"y": 47.35
+},
+"M3D": [
+0.999267578125,
+-0.034912109375,
+0.0,
+0.0,
+0.034912109375,
+0.999267578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.15,
+-38.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.4,
+"y": 42.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-471.6,
+60.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 112.6,
+"y": 78.5
+},
+"M3D": [
+1.06585693359375,
+0.129791259765625,
+0.0,
+0.0,
+-0.142578125,
+1.06494140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-531.8,
+-139.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.6,
+"y": 21.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-482.4,
+-12.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.25,
+"y": 20.1
+},
+"M3D": [
+0.9969940185546875,
+0.0742340087890625,
+0.0,
+0.0,
+-0.0742340087890625,
+0.9969940185546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.35,
+-56.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front low detail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 54.1,
+"y": 41.85
+},
+"M3D": [
+1.184539794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.184539794921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-475.2,
+102.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.45,
+"y": 42.35
+},
+"M3D": [
+-0.078582763671875,
+0.9951171875,
+0.0,
+0.0,
+0.9951171875,
+0.078582763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.25,
+74.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front lowdetail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.7,
+"y": 38.7
+},
+"M3D": [
+0.985626220703125,
+-1.0673065185546876,
+0.0,
+0.0,
+0.581085205078125,
+0.9606170654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-617.6,
+230.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 159.05,
+"y": 148.85
+},
+"M3D": [
+0.9908905029296875,
+0.13134765625,
+0.0,
+0.0,
+-0.13134765625,
+0.9908905029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.45,
+-134.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.0,
+"y": 49.5
+},
+"M3D": [
+0.9992523193359375,
+0.0355224609375,
+0.0,
+0.0,
+-0.0355224609375,
+0.9992523193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-505.5,
+0.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.55,
+"y": 79.35000000000001
+},
+"M3D": [
+0.9913330078125,
+-0.12603759765625,
+0.0,
+0.0,
+0.12603759765625,
+0.9913330078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.3,
+-47.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.400000000000009,
+"y": 42.400000000000009
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0471649169921875,
+0.9292449951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.6,
+49.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot small left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.65,
+"y": 68.55
+},
+"M3D": [
+1.13592529296875,
+0.0453643798828125,
+0.0,
+0.0,
+-0.0453643798828125,
+1.13592529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-469.2,
+58.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.55
+},
+"M3D": [
+1.057952880859375,
+0.182342529296875,
+0.0,
+0.0,
+-0.195068359375,
+1.056396484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.85,
+-155.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.65,
+"y": 37.7
+},
+"M3D": [
+0.99859619140625,
+0.0494842529296875,
+0.0,
+0.0,
+-0.0468597412109375,
+0.94561767578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-472.95,
+-24.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.35,
+"y": 20.150000000000003
+},
+"M3D": [
+0.99298095703125,
+0.1149749755859375,
+0.0,
+0.0,
+-0.1149749755859375,
+0.99298095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.45,
+-68.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.45,
+"y": 42.35
+},
+"M3D": [
+-0.078582763671875,
+0.9951171875,
+0.0,
+0.0,
+0.9951171875,
+0.078582763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.25,
+74.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front lowdetail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.7,
+"y": 38.7
+},
+"M3D": [
+0.985626220703125,
+-1.0673065185546876,
+0.0,
+0.0,
+0.581085205078125,
+0.9606170654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-617.6,
+230.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 159.05,
+"y": 148.85
+},
+"M3D": [
+0.9908905029296875,
+0.13134765625,
+0.0,
+0.0,
+-0.13134765625,
+0.9908905029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.45,
+-134.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.0,
+"y": 49.5
+},
+"M3D": [
+0.9992523193359375,
+0.0355224609375,
+0.0,
+0.0,
+-0.0355224609375,
+0.9992523193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-505.5,
+0.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.55,
+"y": 79.35
+},
+"M3D": [
+0.9913330078125,
+-0.12603759765625,
+0.0,
+0.0,
+0.12603759765625,
+0.9913330078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.3,
+-47.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.4,
+"y": 42.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0471649169921875,
+0.9292449951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.6,
+49.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot small left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.65,
+"y": 68.55
+},
+"M3D": [
+1.13592529296875,
+0.0453643798828125,
+0.0,
+0.0,
+-0.0453643798828125,
+1.13592529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-469.2,
+58.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.55
+},
+"M3D": [
+1.057952880859375,
+0.182342529296875,
+0.0,
+0.0,
+-0.195068359375,
+1.056396484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.85,
+-155.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.65,
+"y": 37.7
+},
+"M3D": [
+0.99859619140625,
+0.0494842529296875,
+0.0,
+0.0,
+-0.0468597412109375,
+0.94561767578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-472.95,
+-24.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.35,
+"y": 20.15
+},
+"M3D": [
+0.99298095703125,
+0.1149749755859375,
+0.0,
+0.0,
+-0.1149749755859375,
+0.99298095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.45,
+-68.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.45,
+"y": 42.35
+},
+"M3D": [
+-0.078582763671875,
+0.9951171875,
+0.0,
+0.0,
+0.9951171875,
+0.078582763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.25,
+74.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front lowdetail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.7,
+"y": 38.7
+},
+"M3D": [
+0.985626220703125,
+-1.0673065185546876,
+0.0,
+0.0,
+0.581085205078125,
+0.9606170654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-617.6,
+230.75,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 159.05,
+"y": 148.85
+},
+"M3D": [
+0.9908905029296875,
+0.13134765625,
+0.0,
+0.0,
+-0.13134765625,
+0.9908905029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-582.45,
+-134.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.0,
+"y": 49.5
+},
+"M3D": [
+0.9992523193359375,
+0.0355224609375,
+0.0,
+0.0,
+-0.0355224609375,
+0.9992523193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-505.5,
+0.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.55,
+"y": 79.35
+},
+"M3D": [
+0.9913330078125,
+-0.12603759765625,
+0.0,
+0.0,
+0.12603759765625,
+0.9913330078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-413.3,
+-47.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.4,
+"y": 42.4
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.0471649169921875,
+0.9292449951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-466.6,
+49.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot small left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.65,
+"y": 68.55
+},
+"M3D": [
+1.13592529296875,
+0.0453643798828125,
+0.0,
+0.0,
+-0.0453643798828125,
+1.13592529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-469.2,
+58.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.55
+},
+"M3D": [
+1.057952880859375,
+0.182342529296875,
+0.0,
+0.0,
+-0.195068359375,
+1.056396484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.85,
+-155.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 46.65,
+"y": 37.7
+},
+"M3D": [
+0.99859619140625,
+0.0494842529296875,
+0.0,
+0.0,
+-0.0468597412109375,
+0.94561767578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-472.95,
+-24.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.35,
+"y": 20.15
+},
+"M3D": [
+0.99298095703125,
+0.1149749755859375,
+0.0,
+0.0,
+-0.1149749755859375,
+0.99298095703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.45,
+-68.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.45,
+"y": 42.300000000000007
+},
+"M3D": [
+-0.66571044921875,
+0.742767333984375,
+0.0,
+0.0,
+0.769775390625,
+0.632843017578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-497.95,
+67.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 159.05,
+"y": 148.8
+},
+"M3D": [
+0.94781494140625,
+0.321044921875,
+0.0,
+0.0,
+-0.266265869140625,
+0.96295166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.55,
+-143.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.050000000000007,
+"y": 49.45
+},
+"M3D": [
+0.9866943359375,
+0.159332275390625,
+0.0,
+0.0,
+-0.159332275390625,
+0.9866943359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-495.2,
+7.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.6000000000000001,
+"y": 79.35000000000001
+},
+"M3D": [
+0.977783203125,
+-0.232879638671875,
+0.0,
+0.0,
+0.120941162109375,
+0.9914398193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-407.75,
+-28.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.300000000000007,
+"y": 42.35
+},
+"M3D": [
+0.9961395263671875,
+0.084564208984375,
+0.0,
+0.0,
+-0.12554931640625,
+0.9216766357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.75,
+60.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.55
+},
+"M3D": [
+1.05633544921875,
+0.1881561279296875,
+0.0,
+0.0,
+-0.20086669921875,
+1.0546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-508.55,
+-140.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.65,
+"y": 21.35
+},
+"M3D": [
+0.974853515625,
+0.0537872314453125,
+0.0,
+0.0,
+-0.0483856201171875,
+0.87689208984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-465.95,
+-6.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.35,
+"y": 20.150000000000003
+},
+"M3D": [
+0.9972381591796875,
+0.0665740966796875,
+0.0,
+0.0,
+-0.0665740966796875,
+0.9972381591796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-456.85,
+-49.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front lowdetail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.60000000000001,
+"y": 38.6
+},
+"M3D": [
+1.1141204833984376,
+-0.1686859130859375,
+0.0,
+0.0,
+0.0938873291015625,
+1.1203765869140626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.5,
+127.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot small left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.550000000000007,
+"y": 68.5
+},
+"M3D": [
+0.9821624755859375,
+0.201507568359375,
+0.0,
+0.0,
+-0.1127166748046875,
+0.9000091552734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-460.9,
+71.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.45,
+"y": 42.3
+},
+"M3D": [
+-0.66571044921875,
+0.742767333984375,
+0.0,
+0.0,
+0.769775390625,
+0.632843017578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-497.95,
+67.95,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 159.05,
+"y": 148.8
+},
+"M3D": [
+0.94781494140625,
+0.321044921875,
+0.0,
+0.0,
+-0.266265869140625,
+0.96295166015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.55,
+-143.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.05,
+"y": 49.45
+},
+"M3D": [
+0.9866943359375,
+0.159332275390625,
+0.0,
+0.0,
+-0.159332275390625,
+0.9866943359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-495.2,
+7.55,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.6,
+"y": 79.35
+},
+"M3D": [
+0.977783203125,
+-0.232879638671875,
+0.0,
+0.0,
+0.120941162109375,
+0.9914398193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-407.75,
+-28.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.3,
+"y": 42.35
+},
+"M3D": [
+0.9961395263671875,
+0.084564208984375,
+0.0,
+0.0,
+-0.12554931640625,
+0.9216766357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.75,
+60.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.55
+},
+"M3D": [
+1.05633544921875,
+0.1881561279296875,
+0.0,
+0.0,
+-0.20086669921875,
+1.0546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-508.55,
+-140.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.65,
+"y": 21.35
+},
+"M3D": [
+0.974853515625,
+0.0537872314453125,
+0.0,
+0.0,
+-0.0483856201171875,
+0.87689208984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-465.95,
+-6.3,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.35,
+"y": 20.15
+},
+"M3D": [
+0.9972381591796875,
+0.0665740966796875,
+0.0,
+0.0,
+-0.0665740966796875,
+0.9972381591796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-456.85,
+-49.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front lowdetail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.6,
+"y": 38.6
+},
+"M3D": [
+1.1141204833984376,
+-0.1686859130859375,
+0.0,
+0.0,
+0.0938873291015625,
+1.1203765869140626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-601.5,
+127.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot small left",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 52.55,
+"y": 68.5
+},
+"M3D": [
+0.9821624755859375,
+0.201507568359375,
+0.0,
+0.0,
+-0.1127166748046875,
+0.9000091552734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-460.9,
+71.45,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 159.05,
+"y": 148.85
+},
+"M3D": [
+0.807525634765625,
+0.555145263671875,
+0.0,
+0.0,
+-0.37921142578125,
+1.06451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.7,
+-134.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 59.95,
+"y": 49.35
+},
+"M3D": [
+0.86260986328125,
+0.42327880859375,
+0.0,
+0.0,
+-0.1464691162109375,
+1.4948577880859376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-498.5,
+33.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "knee bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 50.5,
+"y": 42.400000000000009
+},
+"M3D": [
+1.0085601806640626,
+-0.00836181640625,
+0.0,
+0.0,
+0.16986083984375,
+0.9805908203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-565.0,
+88.15,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot front lowdetail",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.55,
+"y": 38.5
+},
+"M3D": [
+1.0951385498046876,
+0.2571258544921875,
+0.0,
+0.0,
+-0.3191375732421875,
+1.0767669677734376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-585.3,
+82.5,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm right clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 159.10000000000003,
+"y": 148.8
+},
+"M3D": [
+0.604400634765625,
+0.8362884521484375,
+0.0,
+0.0,
+-0.42877197265625,
+1.36785888671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-483.75,
+-119.5,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "body chest forward bf",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 60.0,
+"y": 49.300000000000007
+},
+"M3D": [
+0.72808837890625,
+0.555755615234375,
+0.0,
+0.0,
+-0.123626708984375,
+1.96270751953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-486.75,
+102.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "head BF relaxed",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 112.55,
+"y": 78.5
+},
+"M3D": [
+0.7491302490234375,
+0.405303955078125,
+0.0,
+0.0,
+-0.1923675537109375,
+1.6264495849609376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-487.25,
+-82.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "arm left clench",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -0.5,
+"y": 79.2
+},
+"M3D": [
+0.67291259765625,
+-0.5697479248046875,
+0.0,
+0.0,
+0.36016845703125,
+1.44879150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-448.9,
+125.4,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "mouth mega happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 43.75,
+"y": 21.25
+},
+"M3D": [
+0.789154052734375,
+0.23284912109375,
+0.0,
+0.0,
+-0.069671630859375,
+1.2625579833984376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-469.7,
+125.8,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "eyes happy",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 38.2,
+"y": 20.1
+},
+"M3D": [
+0.7254638671875,
+0.2659759521484375,
+0.0,
+0.0,
+-0.1003265380859375,
+1.5029296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-454.55,
+64.85,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.95,
+"y": 80.85000000000001
+},
+"M3D": [
+0.870269775390625,
+0.6120452880859375,
+0.0,
+0.0,
+-0.25897216796875,
+0.96502685546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-562.05,
+60.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0236",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.0,
+33.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "foot rested light",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 79.9,
+"y": 80.80000000000001
+},
+"M3D": [
+0.8308563232421875,
+0.758880615234375,
+0.0,
+0.0,
+-0.1993255615234375,
+0.74273681640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.7,
+99.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 21,
+"E": []
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm left clench",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0227",
+"M3D": [
+0.669830322265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.669830322265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "mouth mega happy",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0228",
+"M3D": [
+0.7908172607421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7908172607421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "eyes happy",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0229",
+"M3D": [
+0.6638641357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6638641357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-2.65,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "knee bf",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0230",
+"M3D": [
+0.9914398193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9914398193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.95,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm right clench",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0231",
+"M3D": [
+0.6975860595703125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6975860595703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body chest forward bf",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0232",
+"M3D": [
+0.50848388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.50848388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot front low detail",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0233",
+"M3D": [
+0.844207763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.844207763671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+3.35,
+-5.9,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot front lowdetail",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0234",
+"M3D": [
+0.688323974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.688323974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "foot small left",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0235",
+"M3D": [
+0.879608154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.879608154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "Boyfriend DJ new character ",
+"TL": {
+"L": [
+{
+"LN": "disc_left",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.700000000000004
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.35,
+"y": 26.7
+},
+"M3D": [
+0.9892578125,
+0.135223388671875,
+0.0,
+0.0,
+-0.135223388671875,
+0.9892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-610.15,
+152.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "disc_right",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "spinning disk",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 62.3,
+"y": 26.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.15,
+161.3,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "turntable",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.30000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "turn table",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 196.85,
+"y": 112.3
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.4,
+158.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_40",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": -481.6,
+"y": 115.2
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-896.45,
+-14.55,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "white_particles_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white particles",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+32.35,
+-15.65,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "radiant_4",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15000000000006
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15000000000006
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.15
+},
+"M3D": [
+-0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.40447998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-636.25,
+69.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "radiant_3",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "PO",
+"TRP": {
+"x": -492.1,
+"y": 332.05
+},
+"M3D": [
+-0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.56451416015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-706.9,
+64.85,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "radiant_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -492.15000000000006,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "PO",
+"TRP": {
+"x": -492.15,
+"y": 331.95
+},
+"M3D": [
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.6840057373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-149.15,
+50.85,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "radiant_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 36,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 37,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 38,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 39,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 40,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 41,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 42,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 43,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 44,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 45,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 46,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 47,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 48,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 49,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 50,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 51,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 52,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 53,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 54,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 55,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 56,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 57,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 58,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 59,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 18,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 19,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 20,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 21,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 22,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 23,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 24,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 25,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 26,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 27,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 28,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 29,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 30,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 31,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 32,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 33,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 34,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "radiant beam",
+"IN": "",
+"ST": "G",
+"FF": 35,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.7569427490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-102.45,
+30.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "base_light",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.8770751953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8770751953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-552.75,
+95.25,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.2890625
+},
+"F": {
+"BLF": {
+"BLX": 52.0,
+"BLY": 52.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.8814544677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8814544677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.25,
+94.6,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3046875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 52.642974853515628,
+"BLY": 52.642974853515628,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.885833740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.885833740234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.7,
+93.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.31640625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 53.285675048828128,
+"BLY": 53.285675048828128,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.890228271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.890228271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-554.15,
+93.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.33203125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 53.92864990234375,
+"BLY": 53.92864990234375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.894622802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.894622802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-554.65,
+92.55,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.34765625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 54.57135009765625,
+"BLY": 54.57135009765625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.899017333984375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.899017333984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-555.1,
+91.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 55.214324951171878,
+"BLY": 55.214324951171878,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.9033966064453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9033966064453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-555.55,
+91.2,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 55.857025146484378,
+"BLY": 55.857025146484378,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9077911376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9077911376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.05,
+90.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.390625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 56.5,
+"BLY": 56.5,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9121856689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9121856689453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.45,
+89.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.40234375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 57.142974853515628,
+"BLY": 57.142974853515628,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.91656494140625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.91656494140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.9,
+89.15,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.41796875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 57.785675048828128,
+"BLY": 57.785675048828128,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.92095947265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.92095947265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-557.4,
+88.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.43359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 58.42864990234375,
+"BLY": 58.42864990234375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.92535400390625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.92535400390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-557.85,
+87.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4453125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 59.07135009765625,
+"BLY": 59.07135009765625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.65,
+"y": 73.3
+},
+"M3D": [
+0.92974853515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.92974853515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.3,
+87.1,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4609375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 59.714324951171878,
+"BLY": 59.714324951171878,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.35
+},
+"M3D": [
+0.9341278076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9341278076171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.8,
+86.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4765625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 60.357025146484378,
+"BLY": 60.357025146484378,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.9385223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9385223388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-559.25,
+85.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4921875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 61.0,
+"BLY": 61.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9429168701171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9429168701171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-559.7,
+85.1,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.50390625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 61.642974853515628,
+"BLY": 61.642974853515628,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.947296142578125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.947296142578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-560.2,
+84.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.51953125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 62.285675048828128,
+"BLY": 62.285675048828128,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.951690673828125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.951690673828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-560.65,
+83.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.53515625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 62.92864990234375,
+"BLY": 62.92864990234375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.956085205078125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.956085205078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-561.1,
+83.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 63.57135009765625,
+"BLY": 63.57135009765625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.960479736328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.960479736328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-561.6,
+82.35,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 64.21432495117188,
+"BLY": 64.21432495117188,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9648590087890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9648590087890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-562.05,
+81.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 64.85702514648438,
+"BLY": 64.85702514648438,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9692535400390625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9692535400390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-562.5,
+81.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.58984375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 65.5,
+"BLY": 65.5,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9736480712890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9736480712890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.0,
+80.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.60546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 66.14297485351563,
+"BLY": 66.14297485351563,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.97802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.97802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.45,
+79.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.62109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 66.78567504882813,
+"BLY": 66.78567504882813,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.982421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.982421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.9,
+78.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6328125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 67.42864990234375,
+"BLY": 67.42864990234375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.98681640625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.98681640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.4,
+78.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 68.07135009765625,
+"BLY": 68.07135009765625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.85,
+77.55,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6640625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 68.71432495117188,
+"BLY": 68.71432495117188,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9955902099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9955902099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-565.3,
+76.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.67578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 69.35702514648438,
+"BLY": 69.35702514648438,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-565.75,
+76.25,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.69140625
+},
+"F": {
+"BLF": {
+"BLX": 70.0,
+"BLY": 70.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-565.75,
+76.25,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.69140625
+},
+"F": {
+"BLF": {
+"BLX": 70.0,
+"BLY": 70.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9960784912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9960784912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-565.35,
+76.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6796875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 69.42488098144531,
+"BLY": 69.42488098144531,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9921417236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9921417236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.95,
+77.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.66796875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 68.85002136230469,
+"BLY": 68.85002136230469,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.98822021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.98822021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.5,
+78.1,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.65234375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 68.27490234375,
+"BLY": 68.27490234375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9842987060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9842987060546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-564.1,
+78.7,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.640625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 67.7000503540039,
+"BLY": 67.7000503540039,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.9803619384765625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9803619384765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.65,
+79.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.62890625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 67.12492370605469,
+"BLY": 67.12492370605469,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9764404296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9764404296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.25,
+79.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6171875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 66.5500717163086,
+"BLY": 66.5500717163086,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.9725189208984375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9725189208984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-562.85,
+80.55,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.60546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 65.9749526977539,
+"BLY": 65.9749526977539,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9685821533203125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9685821533203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-562.45,
+81.1,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.59375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 65.40009307861328,
+"BLY": 65.40009307861328,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.96466064453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.96466064453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-562.05,
+81.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 64.8249740600586,
+"BLY": 64.8249740600586,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.9607391357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9607391357421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-561.6,
+82.35,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.56640625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 64.2501220703125,
+"BLY": 64.2501220703125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9568023681640625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9568023681640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-561.2,
+82.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 63.67499923706055,
+"BLY": 63.67499923706055,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.952880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.952880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-560.75,
+83.55,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.54296875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 63.10014343261719,
+"BLY": 63.10014343261719,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.9489593505859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9489593505859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-560.35,
+84.15,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.53125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 62.525020599365237,
+"BLY": 62.525020599365237,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.9450225830078125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9450225830078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-559.9,
+84.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.51953125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 61.950164794921878,
+"BLY": 61.950164794921878,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.94110107421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.94110107421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-559.5,
+85.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5078125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 61.37504577636719,
+"BLY": 61.37504577636719,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.9371795654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9371795654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-559.1,
+85.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4921875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 60.7999267578125,
+"BLY": 60.7999267578125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9332427978515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9332427978515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.7,
+86.6,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.48046875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 60.225067138671878,
+"BLY": 60.225067138671878,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.9293212890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9293212890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.3,
+87.2,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.46875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 59.64994812011719,
+"BLY": 59.64994812011719,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.9253997802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9253997802734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-557.85,
+87.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.45703125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 59.07509231567383,
+"BLY": 59.07509231567383,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.9214630126953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9214630126953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-557.45,
+88.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4453125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 58.49997329711914,
+"BLY": 58.49997329711914,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.91754150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.91754150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-557.0,
+89.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.43359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 57.92511749267578,
+"BLY": 57.92511749267578,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9136199951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9136199951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.6,
+89.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.41796875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 57.349998474121097,
+"BLY": 57.349998474121097,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.25
+},
+"M3D": [
+0.9096832275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9096832275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.2,
+90.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.40625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 56.77513885498047,
+"BLY": 56.77513885498047,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.90576171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.90576171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-555.75,
+90.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.39453125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 56.20001983642578,
+"BLY": 56.20001983642578,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.9018402099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9018402099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-555.4,
+91.45,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 55.62516403198242,
+"BLY": 55.62516403198242,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.3
+},
+"M3D": [
+0.8979034423828125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8979034423828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-554.95,
+92.05,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.37109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 55.050045013427737,
+"BLY": 55.050045013427737,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.89398193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.89398193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-554.55,
+92.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 54.475189208984378,
+"BLY": 54.475189208984378,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.7,
+"y": 73.25
+},
+"M3D": [
+0.8900604248046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8900604248046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-554.15,
+93.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.34375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 53.90007019042969,
+"BLY": 53.90007019042969,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.8861236572265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8861236572265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.7,
+93.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.33203125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 53.32521057128906,
+"BLY": 53.32521057128906,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "base light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 105.75,
+"y": 73.3
+},
+"M3D": [
+0.8822021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8822021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-553.3,
+94.45,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.3203125
+},
+"F": {
+"BLF": {
+"BLX": 52.750091552734378,
+"BLY": 52.750091552734378,
+"Q": 1
+}
+}
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_20",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.10000000000001,
+"y": 175.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+0.81170654296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-518.5,
+-104.15,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.109375
+},
+"F": {
+"BLF": {
+"BLX": 32.0,
+"BLY": 107.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.4
+},
+"M3D": [
+0.99578857421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.816802978515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-518.3,
+-105.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.837310791015626,
+"BLY": 109.95552062988281,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9914703369140625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.822021484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-518.0,
+-105.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.140625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.670867919921876,
+"BLY": 112.97923278808594,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.4
+},
+"M3D": [
+0.9870452880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8273468017578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-517.75,
+-106.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.15234375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.500579833984376,
+"BLY": 116.07279968261719,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9825439453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8328094482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-517.5,
+-107.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.16796875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.3265380859375,
+"BLY": 119.23455810546875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.9779205322265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.838409423828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-517.25,
+-108.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.1875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.1485595703125,
+"BLY": 122.46783447265625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.4
+},
+"M3D": [
+0.9732208251953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8441162109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.95,
+-109.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.203125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.9669189453125,
+"BLY": 125.76763916015625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.9683990478515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.849945068359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.65,
+-110.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.21875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.78125,
+"BLY": 129.140625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9634857177734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8558807373046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.4,
+-111.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.234375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.59173583984375,
+"BLY": 132.58346557617188,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.9584808349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8619537353515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.1,
+-112.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.25390625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.3985595703125,
+"BLY": 136.09283447265626,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.953369140625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.868133544921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.8,
+-113.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.26953125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.201446533203126,
+"BLY": 139.67372131347657,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.9481658935546875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8744354248046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.5,
+-115.05,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2890625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.000579833984376,
+"BLY": 143.3227996826172,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9428558349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.2,
+-116.2,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.30859375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.79595947265625,
+"BLY": 147.04006958007813,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9374542236328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8874053955078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.9,
+-117.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.32421875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.58740234375,
+"BLY": 150.828857421875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.4
+},
+"M3D": [
+0.93194580078125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8940582275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.55,
+-118.55,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.34375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.375,
+"BLY": 154.6875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.9263458251953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9008331298828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.25,
+-119.7,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.36328125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.15875244140625,
+"BLY": 158.61599731445313,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.9206390380859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9077606201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.95,
+-120.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.938751220703126,
+"BLY": 162.61268615722657,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.914825439453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9147796630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.55,
+-122.15,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.40625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.714813232421876,
+"BLY": 166.68089294433595,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.908935546875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.92193603515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.2,
+-123.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.42578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.487213134765626,
+"BLY": 170.8156280517578,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.9029388427734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9291839599609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-512.85,
+-124.7,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4453125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.255767822265626,
+"BLY": 175.0202178955078,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.8968353271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.93658447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-512.55,
+-126.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.46875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.020477294921876,
+"BLY": 179.29466247558595,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.890625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.944091796875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-512.15,
+-127.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.48828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.78125,
+"BLY": 183.640625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.8843231201171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9517059326171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-511.85,
+-128.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.51171875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.538177490234376,
+"BLY": 188.0564422607422,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.8779296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.959442138671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-511.45,
+-130.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.53125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.29144287109375,
+"BLY": 192.53878784179688,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.871429443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.967315673828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-511.1,
+-131.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.040771484375,
+"BLY": 197.0926513671875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.864837646484375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9752960205078125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.7,
+-132.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.786346435546876,
+"BLY": 201.71470642089845,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.8581390380859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9834136962890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.3,
+-134.2,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6015625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.528076171875,
+"BLY": 206.4066162109375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.851348876953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.99163818359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.9,
+-135.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.265960693359376,
+"BLY": 211.1683807373047,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.10000000000001,
+"y": 175.35
+},
+"M3D": [
+0.844451904296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.5,
+-137.15,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.6484375
+},
+"F": {
+"BLF": {
+"BLX": 26.0,
+"BLY": 216.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.10000000000001,
+"y": 175.35
+},
+"M3D": [
+0.844451904296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.5,
+-137.15,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.6484375
+},
+"F": {
+"BLF": {
+"BLX": 26.0,
+"BLY": 216.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.8508758544921875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.992523193359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-509.9,
+-135.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.2380313873291,
+"BLY": 211.67575073242188,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.857208251953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.98516845703125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.25,
+-134.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.60546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.47273063659668,
+"BLY": 207.41207885742188,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.863494873046875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9778900146484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-510.6,
+-133.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5859375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.704444885253908,
+"BLY": 203.20257568359376,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.8696746826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9707183837890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-511.0,
+-131.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.932825088500978,
+"BLY": 199.0536651611328,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.0,
+"y": 175.3
+},
+"M3D": [
+0.875762939453125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.963653564453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-511.3,
+-130.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.54296875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.158048629760743,
+"BLY": 194.96212768554688,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.88177490234375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.956695556640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-511.7,
+-129.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5234375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.380023956298829,
+"BLY": 190.9295654296875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.8876800537109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9498291015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-512.0,
+-128.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.50390625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.59884262084961,
+"BLY": 186.95437622070313,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.8935089111328125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.94305419921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-512.4,
+-127.1,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.81441307067871,
+"BLY": 183.0381622314453,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.899261474609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9363861083984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-512.75,
+-125.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.46484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.026912689208986,
+"BLY": 179.177734375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.9049224853515625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9298248291015625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.0,
+-124.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4453125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.236080169677736,
+"BLY": 175.3778839111328,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.910491943359375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9233551025390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.35,
+-123.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4296875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.442174911499025,
+"BLY": 171.63381958007813,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.915985107421875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9169921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-513.7,
+-122.55,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.41015625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.6450252532959,
+"BLY": 167.94871520996095,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.92138671875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9107208251953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.0,
+-121.45,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.390625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.844715118408204,
+"BLY": 164.32101440429688,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.92669677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.9045562744140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.3,
+-120.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.041072845458986,
+"BLY": 160.7538604736328,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.931915283203125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.89849853515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.6,
+-119.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.35546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.234357833862306,
+"BLY": 157.24249267578126,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9370574951171875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8925323486328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.9,
+-118.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.33984375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.424484252929689,
+"BLY": 153.78851318359376,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.942108154296875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8866729736328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.2,
+-117.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3203125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.611278533935548,
+"BLY": 150.39511108398438,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.94708251953125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8809051513671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.5,
+-116.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3046875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.795089721679689,
+"BLY": 147.05589294433595,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.95196533203125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.875244140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-515.8,
+-115.2,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2890625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.97547721862793,
+"BLY": 143.77883911132813,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.9567718505859375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8696746826171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.05,
+-114.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2734375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.152793884277345,
+"BLY": 140.55755615234376,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.96148681640625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8642120361328125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.35,
+-113.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.326866149902345,
+"BLY": 137.395263671875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.9661102294921875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8588409423828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.65,
+-112.35,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2421875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.497779846191408,
+"BLY": 134.29034423828126,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.9706268310546875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8535919189453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-516.85,
+-111.45,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2265625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.66544532775879,
+"BLY": 131.24441528320313,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9750823974609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.848419189453125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-517.1,
+-110.55,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.829952239990236,
+"BLY": 128.255859375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.3
+},
+"M3D": [
+0.979461669921875,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8433685302734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-517.45,
+-109.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.19921875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.991214752197267,
+"BLY": 125.32626342773438,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.9837188720703125,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8383941650390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-517.65,
+-108.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.18359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.149494171142579,
+"BLY": 122.45086669921875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.1,
+"y": 175.35
+},
+"M3D": [
+0.9879150390625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8335418701171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-517.85,
+-107.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.16796875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.304349899291993,
+"BLY": 119.63763427734375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.3
+},
+"M3D": [
+0.992034912109375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.828765869140625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-518.1,
+-107.1,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.15625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.45613670349121,
+"BLY": 116.88018798828125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.05,
+"y": 175.35
+},
+"M3D": [
+0.99603271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.8241119384765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-518.35,
+-106.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.140625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.60458755493164,
+"BLY": 114.18331146240235,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "pillar light",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 77.10000000000001,
+"y": 175.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+0.819549560546875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-518.6,
+-105.5,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.12890625
+},
+"F": {
+"BLF": {
+"BLX": 31.749969482421876,
+"BLY": 111.54222106933594,
+"Q": 1
+}
+}
+}
+}
+]
+}
+]
+},
+{
+"LN": "fbf_glow_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "fbf glow",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": -437.8,
+"y": 147.05
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+6.85,
+-0.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1484375
+}
+}
+}
+]
+}
+]
+},
+{
+"LN": "shadow",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.1015625
+},
+"F": {
+"BLF": {
+"BLX": 21.0,
+"BLY": 59.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.1171875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 20.428466796875,
+"BLY": 61.5718994140625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.12890625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 19.857177734375,
+"BLY": 64.1427001953125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.14453125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 19.28564453125,
+"BLY": 66.714599609375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.16015625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 18.71435546875,
+"BLY": 69.285400390625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.171875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 18.142822265625,
+"BLY": 71.8572998046875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.1875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 17.571533203125,
+"BLY": 74.4281005859375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.203125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 17.0,
+"BLY": 77.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.21484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 16.428466796875,
+"BLY": 79.5718994140625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.23046875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 15.857177734375,
+"BLY": 82.1427001953125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2421875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 15.28564453125,
+"BLY": 84.714599609375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 14.71435546875,
+"BLY": 87.285400390625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2734375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 14.142822265625,
+"BLY": 89.8572998046875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.28515625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 13.571533203125,
+"BLY": 92.4281005859375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.30078125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 13.0,
+"BLY": 95.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.31640625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.428466796875,
+"BLY": 97.5718994140625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.328125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.857177734375,
+"BLY": 100.1427001953125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.34375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.28564453125,
+"BLY": 102.714599609375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 10.71435546875,
+"BLY": 105.285400390625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.37109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 10.142822265625,
+"BLY": 107.8572998046875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.38671875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 9.571533203125,
+"BLY": 110.4281005859375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.40234375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 9.0,
+"BLY": 113.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4140625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 8.428466796875,
+"BLY": 115.5718994140625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4296875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 7.857177734375,
+"BLY": 118.1427001953125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.44140625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 7.28564453125,
+"BLY": 120.714599609375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.45703125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 6.71435546875,
+"BLY": 123.285400390625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.47265625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 6.142822265625,
+"BLY": 125.8572998046875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 5.571533203125,
+"BLY": 128.4281005859375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.5
+},
+"F": {
+"BLF": {
+"BLX": 5.0,
+"BLY": 131.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.5
+},
+"F": {
+"BLF": {
+"BLX": 5.0,
+"BLY": 131.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.48828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 5.516239643096924,
+"BLY": 128.6769256591797,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.47265625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 6.032243251800537,
+"BLY": 126.35490417480469,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4609375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 6.548482894897461,
+"BLY": 124.03182220458985,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.44921875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 7.064486503601074,
+"BLY": 121.70980834960938,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.43359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 7.580726623535156,
+"BLY": 119.38673400878906,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.421875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 8.09673023223877,
+"BLY": 117.06471252441406,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.41015625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 8.612970352172852,
+"BLY": 114.74163818359375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.39453125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 9.128973007202149,
+"BLY": 112.41961669921875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 9.64521312713623,
+"BLY": 110.09654235839844,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.37109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 10.161216735839844,
+"BLY": 107.77452087402344,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.35546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 10.677456855773926,
+"BLY": 105.45144653320313,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.34375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.193460464477539,
+"BLY": 103.12942504882813,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.33203125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.709699630737305,
+"BLY": 100.80635070800781,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.31640625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.225704193115235,
+"BLY": 98.48432922363281,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3046875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.741943359375,
+"BLY": 96.1612548828125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.29296875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 13.258183479309082,
+"BLY": 93.83818054199219,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.27734375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 13.774187088012696,
+"BLY": 91.51615905761719,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.265625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 14.290426254272461,
+"BLY": 89.19308471679688,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.25390625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 14.806429862976075,
+"BLY": 86.87106323242188,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.23828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 15.322669982910157,
+"BLY": 84.54798889160156,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.2265625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 15.83867359161377,
+"BLY": 82.22596740722656,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.21484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 16.35491371154785,
+"BLY": 79.90289306640625,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.19921875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 16.87091636657715,
+"BLY": 77.58087158203125,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.1875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 17.387157440185548,
+"BLY": 75.25779724121094,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.17578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 17.903160095214845,
+"BLY": 72.93577575683594,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.16015625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 18.41939926147461,
+"BLY": 70.61270141601563,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.1484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 18.93540382385254,
+"BLY": 68.29067993164063,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.13671875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 19.451642990112306,
+"BLY": 65.96760559082031,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.12109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 19.967647552490236,
+"BLY": 63.645591735839847,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "shadow",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 136.65,
+"y": 128.0
+},
+"M3D": [
+0.959014892578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-578.3,
+-129.0,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.109375
+},
+"F": {
+"BLF": {
+"BLX": 20.48388671875,
+"BLY": 61.322509765625,
+"Q": 1
+}
+}
+}
+}
+]
+}
+]
+},
+{
+"LN": "mouth",
+"FR": [
+{
+"I": 0,
+"DU": 60,
+"E": [
+{
+"SI": {
+"SN": "mouth o",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 11.8,
+"y": 7.15
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-453.7,
+83.5,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "eye_shine_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "eye shine",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "face",
+"FR": [
+{
+"I": 0,
+"DU": 60,
+"E": [
+{
+"ASI": {
+"N": "0241",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-465.0,
+39.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "hand",
+"FR": [
+{
+"I": 0,
+"DU": 60,
+"E": [
+{
+"SI": {
+"SN": "hand fg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 35.2,
+"y": 42.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-415.6,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "head",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 165.70000000000003,
+"y": 101.60000000000001
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "LP",
+"TRP": {
+"x": 165.7,
+"y": 101.6
+},
+"M3D": [
+0.7686614990234375,
+0.018096923828125,
+0.0,
+0.0,
+-0.02032470703125,
+0.7686004638671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.45,
+-57.6,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "body",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "arm bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 69.4,
+"y": 42.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-583.9,
+71.1,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "boyfriend dj body shirt blowing slowly",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "LP",
+"TRP": {
+"x": 167.5,
+"y": 99.4
+},
+"M3D": [
+0.91497802734375,
+0.183258056640625,
+0.0,
+0.0,
+-0.25396728515625,
+0.9460296630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-558.25,
+67.05,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "pieces bg",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 45.45,
+"y": 33.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-428.5,
+77.4,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "white particles",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 16,
+"E": []
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 16,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 10,
+"E": []
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 22,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_3",
+"FR": [
+{
+"I": 0,
+"DU": 6,
+"E": []
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 26,
+"E": []
+}
+]
+},
+{
+"LN": "white_spec_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 32,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_7",
+"FR": [
+{
+"I": 0,
+"DU": 28,
+"E": []
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 4,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_6",
+"FR": [
+{
+"I": 0,
+"DU": 23,
+"E": []
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 9,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_11",
+"FR": [
+{
+"I": 0,
+"DU": 36,
+"E": []
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 5,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_12",
+"FR": [
+{
+"I": 0,
+"DU": 30,
+"E": []
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 11,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_13",
+"FR": [
+{
+"I": 0,
+"DU": 26,
+"E": []
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 15,
+"E": []
+}
+]
+},
+{
+"LN": "white_spec_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 20,
+"E": []
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 21,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_20",
+"FR": [
+{
+"I": 0,
+"DU": 8,
+"E": []
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 8,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_22",
+"FR": [
+{
+"I": 0,
+"DU": 3,
+"E": []
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 13,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_23",
+"FR": [
+{
+"I": 0,
+"DU": 16,
+"E": []
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_24",
+"FR": [
+{
+"I": 0,
+"DU": 10,
+"E": []
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 6,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_25",
+"FR": [
+{
+"I": 0,
+"DU": 6,
+"E": []
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 10,
+"E": []
+}
+]
+},
+{
+"LN": "white_spec_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 16,
+"E": []
+}
+]
+},
+{
+"LN": "white_spec_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 13,
+"E": []
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+110.35,
+6.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 20,
+"E": []
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_21",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 43,
+"E": []
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1020.3,
+-46.4,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_28",
+"FR": [
+{
+"I": 0,
+"DU": 39,
+"E": []
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+12.0,
+-79.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 4,
+"E": []
+}
+]
+},
+{
+"LN": "Layer_29",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 17,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 42,
+"E": []
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-942.35,
+13.6,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_30",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 43,
+"E": []
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.95,
+10.1,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_31",
+"FR": [
+{
+"I": 0,
+"DU": 42,
+"E": []
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": 0.0,
+"y": 0.0
+},
+"M3D": [
+-1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-961.85,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": []
+}
+]
+},
+{
+"LN": "white_spec_Layer",
+"FR": [
+{
+"I": 0,
+"DU": 36,
+"E": []
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 1,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 2,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 3,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 4,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 5,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 6,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 7,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 8,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 9,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 10,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 11,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 12,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 13,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 14,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 15,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "white spec",
+"IN": "",
+"ST": "G",
+"FF": 16,
+"LP": "PO",
+"TRP": {
+"x": -541.15,
+"y": 99.8
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.35,
+0.35,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 7,
+"E": []
+}
+]
+}
+]
+}
+},
+{
+"SN": "white spec",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0245",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-541.0,
+176.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0246",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.0,
+145.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0247",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-543.0,
+111.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0248",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-545.0,
+97.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0249",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-551.0,
+80.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0250",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-556.0,
+70.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0251",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-559.0,
+60.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0252",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-560.0,
+51.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0253",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.0,
+45.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0253",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-563.0,
+45.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": []
+}
+]
+}
+]
+}
+},
+{
+"SN": "radiant beam",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.450000000000001,
+"y": 239.8
+},
+"M3D": [
+0.65234375,
+-0.751251220703125,
+0.0,
+0.0,
+0.7471923828125,
+0.6487884521484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-654.2,
+152.5,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 39.0,
+"BLY": 6.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 1,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.69940185546875,
+-0.70758056640625,
+0.0,
+0.0,
+0.7354278564453125,
+0.7269134521484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-652.55,
+130.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.07421875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 36.44253921508789,
+"BLY": 17.659008026123048,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.85
+},
+"M3D": [
+0.7411956787109375,
+-0.6636199951171875,
+0.0,
+0.0,
+0.7178192138671875,
+0.801727294921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-649.3,
+109.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.1484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 34.026458740234378,
+"BLY": 28.673492431640626,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 3,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.7780609130859375,
+-0.6199493408203125,
+0.0,
+0.0,
+0.6952972412109375,
+0.8726043701171875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-644.85,
+89.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.21484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 31.75070571899414,
+"BLY": 39.04825210571289,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.45,
+"y": 239.8
+},
+"M3D": [
+0.8103179931640625,
+-0.5771484375,
+0.0,
+0.0,
+0.6688690185546875,
+0.9390716552734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-639.35,
+71.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.27734375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 29.615631103515626,
+"BLY": 48.78168487548828,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 5,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.85
+},
+"M3D": [
+0.8383026123046875,
+-0.5356292724609375,
+0.0,
+0.0,
+0.639434814453125,
+1.0008087158203126,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-633.05,
+54.15,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.3359375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 27.621232986450197,
+"BLY": 57.8737907409668,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.35,
+"y": 239.85
+},
+"M3D": [
+0.8624267578125,
+-0.495849609375,
+0.0,
+0.0,
+0.6080474853515625,
+1.05755615234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-626.25,
+38.2,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.390625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 25.76821517944336,
+"BLY": 66.32138061523438,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 7,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.85
+},
+"M3D": [
+0.883026123046875,
+-0.458099365234375,
+0.0,
+0.0,
+0.5755157470703125,
+1.109344482421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-619.15,
+23.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.44140625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 24.055522918701173,
+"BLY": 74.12923431396485,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.45,
+"y": 239.8
+},
+"M3D": [
+0.900482177734375,
+-0.4227142333984375,
+0.0,
+0.0,
+0.5426788330078125,
+1.1560821533203126,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-611.8,
+10.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.48828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 22.48386001586914,
+"BLY": 81.2941665649414,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 9,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.45,
+"y": 239.8
+},
+"M3D": [
+0.9151458740234375,
+-0.389923095703125,
+0.0,
+0.0,
+0.5103607177734375,
+1.197845458984375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-604.6,
+-1.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.53125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 21.052875518798829,
+"BLY": 87.8177719116211,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.8
+},
+"M3D": [
+0.9273681640625,
+-0.359893798828125,
+0.0,
+0.0,
+0.4792022705078125,
+1.2347564697265626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-597.55,
+-11.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5703125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 19.762569427490236,
+"BLY": 93.70005798339844,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.9373779296875,
+-0.332855224609375,
+0.0,
+0.0,
+0.449859619140625,
+1.26702880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-590.9,
+-21.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6015625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 18.612939834594728,
+"BLY": 98.94100952148438,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.945556640625,
+-0.308868408203125,
+0.0,
+0.0,
+0.42291259765625,
+1.2947540283203126,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-584.8,
+-28.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6328125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 17.603988647460939,
+"BLY": 103.54064178466797,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.9520721435546875,
+-0.2880859375,
+0.0,
+0.0,
+0.3988189697265625,
+1.3181610107421876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-579.3,
+-35.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.65625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 16.736066818237306,
+"BLY": 107.49734497070313,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 14,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.85
+},
+"M3D": [
+0.9572601318359375,
+-0.27056884765625,
+0.0,
+0.0,
+0.3780364990234375,
+1.3375396728515626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-574.5,
+-41.2,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.6796875
+},
+"F": {
+"BLF": {
+"BLX": 16.008821487426759,
+"BLY": 110.81272888183594,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 15,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.9621734619140625,
+-0.2527313232421875,
+0.0,
+0.0,
+0.355926513671875,
+1.3551483154296876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-568.35,
+-46.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.69921875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 15.39388370513916,
+"BLY": 113.73921966552735,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 16,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.35,
+"y": 239.8
+},
+"M3D": [
+0.9668121337890625,
+-0.2347869873046875,
+0.0,
+0.0,
+0.3332977294921875,
+1.3724822998046876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-561.95,
+-50.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.71875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 14.778944969177246,
+"BLY": 116.66571044921875,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 17,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.85
+},
+"M3D": [
+0.9710845947265625,
+-0.2167510986328125,
+0.0,
+0.0,
+0.31011962890625,
+1.38946533203125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-555.55,
+-55.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.73828125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 14.16411018371582,
+"BLY": 119.59170532226563,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 18,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.85
+},
+"M3D": [
+0.9750518798828125,
+-0.1986541748046875,
+0.0,
+0.0,
+0.286468505859375,
+1.4060211181640626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-548.95,
+-60.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.7578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 13.549171447753907,
+"BLY": 122.51819610595703,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 19,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.35,
+"y": 239.8
+},
+"M3D": [
+0.9786834716796875,
+-0.1804962158203125,
+0.0,
+0.0,
+0.26226806640625,
+1.42218017578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-542.25,
+-64.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.77734375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.934233665466309,
+"BLY": 125.44468688964844,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 20,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.981964111328125,
+-0.162261962890625,
+0.0,
+0.0,
+0.2375946044921875,
+1.4379425048828126,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-535.45,
+-69.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.79296875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.319295883178711,
+"BLY": 128.3711700439453,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 21,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.9849090576171875,
+-0.143951416015625,
+0.0,
+0.0,
+0.2124176025390625,
+1.4532623291015626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-528.5,
+-73.7,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.8125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.704357147216797,
+"BLY": 131.29766845703126,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 22,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.9875030517578125,
+-0.1255950927734375,
+0.0,
+0.0,
+0.1867218017578125,
+1.4681243896484376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-521.4,
+-77.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.83203125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.0894193649292,
+"BLY": 134.22415161132813,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 23,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.35,
+"y": 239.85
+},
+"M3D": [
+0.9897613525390625,
+-0.107208251953125,
+0.0,
+0.0,
+0.1605682373046875,
+1.4825286865234376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-514.15,
+-82.1,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.8515625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 10.474584579467774,
+"BLY": 137.150146484375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 24,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.35,
+"y": 239.8
+},
+"M3D": [
+0.9916839599609375,
+-0.0887603759765625,
+0.0,
+0.0,
+0.1339569091796875,
+1.496490478515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-506.85,
+-86.15,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.87109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 9.85964584350586,
+"BLY": 140.07664489746095,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 25,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.450000000000001,
+"y": 239.8
+},
+"M3D": [
+0.9932708740234375,
+-0.0702972412109375,
+0.0,
+0.0,
+0.10687255859375,
+1.510009765625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-499.45,
+-90.1,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.890625
+},
+"F": {
+"BLF": {
+"BLX": 9.244708061218262,
+"BLY": 143.0031280517578,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 26,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.994415283203125,
+-0.0493316650390625,
+0.0,
+0.0,
+0.0748443603515625,
+1.5086212158203126,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-488.75,
+-90.35,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.88671875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 9.708626747131348,
+"BLY": 142.3363800048828,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 27,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.45,
+"y": 239.8
+},
+"M3D": [
+0.99517822265625,
+-0.0283203125,
+0.0,
+0.0,
+0.04290771484375,
+1.5065765380859376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-478.0,
+-90.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.87890625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 10.17247486114502,
+"BLY": 141.66973876953126,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 28,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.45,
+"y": 239.8
+},
+"M3D": [
+0.995452880859375,
+-0.00732421875,
+0.0,
+0.0,
+0.011077880859375,
+1.50390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-467.35,
+-90.7,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 10.636393547058106,
+"BLY": 141.00299072265626,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 29,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.35,
+"y": 239.8
+},
+"M3D": [
+0.9953155517578125,
+0.0136260986328125,
+0.0,
+0.0,
+-0.0205535888671875,
+1.5005035400390626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-456.65,
+-90.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.87109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.100241661071778,
+"BLY": 140.3363494873047,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 30,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.994720458984375,
+0.0346221923828125,
+0.0,
+0.0,
+-0.052093505859375,
+1.496490478515625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-446.0,
+-90.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.8671875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 11.56416130065918,
+"BLY": 139.66961669921876,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 31,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.45,
+"y": 239.75
+},
+"M3D": [
+0.993682861328125,
+0.05560302734375,
+0.0,
+0.0,
+-0.08349609375,
+1.4917755126953126,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-435.4,
+-89.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.859375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.028079986572266,
+"BLY": 139.00286865234376,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 32,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.992218017578125,
+0.0765380859375,
+0.0,
+0.0,
+-0.1146697998046875,
+1.486419677734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-424.85,
+-89.4,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.85546875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.491928100585938,
+"BLY": 138.3362274169922,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 33,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.9902801513671875,
+0.097442626953125,
+0.0,
+0.0,
+-0.1456756591796875,
+1.4804229736328126,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-414.3,
+-88.7,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.8515625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 12.955846786499024,
+"BLY": 137.6694793701172,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 34,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.4,
+"y": 239.8
+},
+"M3D": [
+0.9879302978515625,
+0.118316650390625,
+0.0,
+0.0,
+-0.176483154296875,
+1.4737701416015626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-403.8,
+-87.85,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.84375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 13.419694900512696,
+"BLY": 137.00283813476563,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 35,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.8
+},
+"M3D": [
+0.98516845703125,
+0.1391448974609375,
+0.0,
+0.0,
+-0.2071533203125,
+1.4665679931640626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-393.5,
+-86.85,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.83984375
+},
+"F": {
+"BLF": {
+"BLX": 13.883613586425782,
+"BLY": 136.33609008789063,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 36,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.75
+},
+"M3D": [
+0.981109619140625,
+0.1640625,
+0.0,
+0.0,
+-0.2413330078125,
+1.44281005859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-383.65,
+-79.3,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.8125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 15.497526168823243,
+"BLY": 131.95095825195313,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 37,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.75
+},
+"M3D": [
+0.9764556884765625,
+0.18890380859375,
+0.0,
+0.0,
+-0.2743988037109375,
+1.418304443359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-374.0,
+-71.6,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.78515625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 17.111438751220704,
+"BLY": 127.56584167480469,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 38,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.75
+},
+"M3D": [
+0.9711761474609375,
+0.213623046875,
+0.0,
+0.0,
+-0.3064422607421875,
+1.39306640625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-364.65,
+-63.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.7578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 18.725078582763673,
+"BLY": 123.18144989013672,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 39,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.8
+},
+"M3D": [
+0.96527099609375,
+0.2381744384765625,
+0.0,
+0.0,
+-0.3373565673828125,
+1.367156982421875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-355.55,
+-55.8,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.73046875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 20.338991165161134,
+"BLY": 118.79632568359375,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 40,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.8
+},
+"M3D": [
+0.9587554931640625,
+0.2625732421875,
+0.0,
+0.0,
+-0.3671875,
+1.3405914306640626,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-346.7,
+-47.6,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.703125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 21.952903747558595,
+"BLY": 114.41120147705078,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 41,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.8
+},
+"M3D": [
+0.9516143798828125,
+0.28680419921875,
+0.0,
+0.0,
+-0.3958282470703125,
+1.3133544921875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-338.1,
+-39.25,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.67578125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 23.566816329956056,
+"BLY": 110.02607727050781,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 42,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.75
+},
+"M3D": [
+0.94384765625,
+0.3108367919921875,
+0.0,
+0.0,
+-0.423370361328125,
+1.28558349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-329.75,
+-30.75,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.6484375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 25.180728912353517,
+"BLY": 105.64095306396485,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 43,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.8
+},
+"M3D": [
+0.935516357421875,
+0.33465576171875,
+0.0,
+0.0,
+-0.44976806640625,
+1.2572479248046876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-321.7,
+-22.15,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.62109375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 26.794639587402345,
+"BLY": 101.25582885742188,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 44,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.8
+},
+"M3D": [
+0.9265899658203125,
+0.358245849609375,
+0.0,
+0.0,
+-0.4749755859375,
+1.228424072265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-313.95,
+-13.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.59375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 28.408283233642579,
+"BLY": 96.8714370727539,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 45,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.5,
+"y": 239.8
+},
+"M3D": [
+0.9170074462890625,
+0.3816070556640625,
+0.0,
+0.0,
+-0.4990234375,
+1.199127197265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-306.45,
+-4.6,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.56640625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 30.022193908691408,
+"BLY": 92.48631286621094,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 46,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.9
+},
+"M3D": [
+0.906890869140625,
+0.40472412109375,
+0.0,
+0.0,
+-0.52191162109375,
+1.16949462890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-299.15,
+4.15,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.5390625
+},
+"F": {
+"BLF": {
+"BLX": 31.636106491088868,
+"BLY": 88.10118865966797,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 47,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.95
+},
+"M3D": [
+0.893157958984375,
+0.434112548828125,
+0.0,
+0.0,
+-0.54925537109375,
+1.130035400390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-296.1,
+13.15,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.5,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 33.788978576660159,
+"BLY": 82.20912170410156,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 48,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.6,
+"y": 239.95
+},
+"M3D": [
+0.8784942626953125,
+0.463043212890625,
+0.0,
+0.0,
+-0.5745849609375,
+1.0901336669921876,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-293.55,
+22.35,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.4609375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 35.94184875488281,
+"BLY": 76.31705474853516,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 49,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.95
+},
+"M3D": [
+0.8628997802734375,
+0.4915008544921875,
+0.0,
+0.0,
+-0.5979156494140625,
+1.0497894287109376,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-291.35,
+31.65,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.421875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 38.09514617919922,
+"BLY": 70.42381286621094,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 50,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.95
+},
+"M3D": [
+0.846435546875,
+0.5194244384765625,
+0.0,
+0.0,
+-0.6192474365234375,
+1.009124755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-289.75,
+41.05,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.38671875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 40.248016357421878,
+"BLY": 64.53174591064453,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 51,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.9
+},
+"M3D": [
+0.829010009765625,
+0.546783447265625,
+0.0,
+0.0,
+-0.6385650634765625,
+0.96820068359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-288.55,
+50.45,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.34765625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 42.40088653564453,
+"BLY": 58.639678955078128,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 52,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.9
+},
+"M3D": [
+0.810699462890625,
+0.5735626220703125,
+0.0,
+0.0,
+-0.6558685302734375,
+0.9271087646484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-287.9,
+60.0,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.30859375,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 44.55376052856445,
+"BLY": 52.74760818481445,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 53,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.6,
+"y": 240.0
+},
+"M3D": [
+0.791534423828125,
+0.5997467041015625,
+0.0,
+0.0,
+-0.6712188720703125,
+0.88592529296875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-287.6,
+69.45,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.26953125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 46.70705795288086,
+"BLY": 46.854373931884769,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 54,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.95
+},
+"M3D": [
+0.7715301513671875,
+0.625274658203125,
+0.0,
+0.0,
+-0.6845855712890625,
+0.8447723388671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-287.85,
+78.95,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.23046875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 48.859928131103519,
+"BLY": 40.962303161621097,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 55,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.9
+},
+"M3D": [
+0.7506866455078125,
+0.6501312255859375,
+0.0,
+0.0,
+-0.6959991455078125,
+0.8037109375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-288.5,
+88.5,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.19140625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 51.01279830932617,
+"BLY": 35.07023620605469,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 56,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.6,
+"y": 239.95
+},
+"M3D": [
+0.72906494140625,
+0.67431640625,
+0.0,
+0.0,
+-0.7054595947265625,
+0.7628021240234375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-289.7,
+97.9,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.15625,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 53.165672302246097,
+"BLY": 29.17816925048828,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 57,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.95
+},
+"M3D": [
+0.7066497802734375,
+0.6977691650390625,
+0.0,
+0.0,
+-0.713043212890625,
+0.7221527099609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-291.25,
+107.35,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.1171875,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 55.3189697265625,
+"BLY": 23.284927368164064,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 58,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.95
+},
+"M3D": [
+0.683502197265625,
+0.7204742431640625,
+0.0,
+0.0,
+-0.7187042236328125,
+0.681854248046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-293.35,
+116.7,
+0.0,
+1.0
+],
+"C": {
+"M": "AD",
+"RM": 1.0,
+"GM": 1.0,
+"BM": 1.0,
+"AM": 0.078125,
+"RO": 0.0,
+"GO": 0.0,
+"BO": 0.0,
+"AO": 0.0
+},
+"F": {
+"BLF": {
+"BLX": 57.471839904785159,
+"BLY": 17.392860412597658,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 59,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "light beam",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 9.55,
+"y": 239.8
+},
+"M3D": [
+0.659637451171875,
+0.742431640625,
+0.0,
+0.0,
+-0.7225799560546875,
+0.64202880859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-295.8,
+126.05,
+0.0,
+1.0
+],
+"C": {
+"M": "CA",
+"AM": 0.0390625
+},
+"F": {
+"BLF": {
+"BLX": 59.62471008300781,
+"BLY": 11.50079345703125,
+"Q": 1
+}
+}
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "light beam",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0254",
+"M3D": [
+0.66058349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+0.66058349609375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "base light",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0237",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "pillar light",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0238",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "fbf glow",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bg flash1",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 319.0,
+"y": 155.95000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-753.5,
+-8.5,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 30.0,
+"BLY": 30.0,
+"Q": 3
+}
+}
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bg flash 2",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 324.35,
+"y": 150.95000000000003
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-756.95,
+-2.2,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 30.0,
+"BLY": 30.0,
+"Q": 3
+}
+}
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bg flash 3",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 324.90000000000006,
+"y": 148.85
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-761.35,
+1.0,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 30.0,
+"BLY": 30.0,
+"Q": 3
+}
+}
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bg flash 4",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 325.6,
+"y": 149.35
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-766.75,
+0.05,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 30.0,
+"BLY": 30.0,
+"Q": 3
+}
+}
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "bg flash 5",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 324.55,
+"y": 148.75
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-767.35,
+-5.75,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 30.0,
+"BLY": 30.0,
+"Q": 3
+}
+}
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bg flash 6",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 307.90000000000006,
+"y": 154.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-750.1,
+-9.25,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 30.0,
+"BLY": 30.0,
+"Q": 1
+}
+}
+}
+}
+]
+},
+{
+"I": 11,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "bg flash 6",
+"IN": "",
+"ST": "MC",
+"TRP": {
+"x": 307.90000000000006,
+"y": 154.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-750.1,
+-9.25,
+0.0,
+1.0
+],
+"F": {
+"BLF": {
+"BLX": 30.0,
+"BLY": 30.0,
+"Q": 1
+}
+}
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bg flash1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0255",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bg flash 2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0256",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bg flash 3",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0257",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bg flash 4",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0258",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bg flash 5",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0259",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "bg flash 6",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0260",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shadow",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0239",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "mouth o",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0240",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "eye shine",
+"TL": {
+"L": [
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0261",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.0,
+49.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0262",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.0,
+50.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0263",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-462.0,
+50.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hand fg",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0242",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "BF Head defalt HAIR BLOWING slowly",
+"TL": {
+"L": [
+{
+"LN": "hair",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hb1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 122.35000000000001,
+"y": 77.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+29.05,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0264",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+1.0,
+29.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hb2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.60000000000001,
+"y": 78.35000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+1.1,
+24.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0265",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-2.0,
+24.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "hb3",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 124.5,
+"y": 77.65
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-4.35,
+26.15,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0266",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-6.0,
+24.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "hb4",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 125.80000000000001,
+"y": 77.95
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-4.85,
+23.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0267",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+-1.0,
+25.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "face",
+"FR": [
+{
+"I": 0,
+"DU": 15,
+"E": [
+{
+"SI": {
+"SN": "face base",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 117.60000000000001,
+"y": 52.6
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+44.55,
+97.95,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 4,
+"E": [
+{
+"SI": {
+"SN": "hat alone",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 115.10000000000001,
+"y": 121.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.012725830078125,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+54.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 4,
+"E": [
+{
+"SI": {
+"SN": "hat alone",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 115.10000000000001,
+"y": 121.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.55,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 4,
+"E": [
+{
+"SI": {
+"SN": "hat alone",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 115.10000000000001,
+"y": 121.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+-0.012725830078125,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+57.1,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 3,
+"E": [
+{
+"SI": {
+"SN": "hat alone",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 115.10000000000001,
+"y": 121.80000000000001
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.55,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "brim",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 118.5,
+"y": 25.0
+},
+"M3D": [
+0.9974822998046875,
+0.065826416015625,
+0.0,
+0.0,
+-0.065826416015625,
+0.9974822998046875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+195.2,
+152.2,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 24.6
+},
+"M3D": [
+0.9983978271484375,
+0.0533905029296875,
+0.0,
+0.0,
+-0.0533905029296875,
+0.9983978271484375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+245.75,
+139.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 118.5,
+"y": 25.05
+},
+"M3D": [
+0.9943695068359375,
+0.10137939453125,
+0.0,
+0.0,
+-0.10137939453125,
+0.9943695068359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+195.4,
+148.45,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 24.6
+},
+"M3D": [
+0.9957275390625,
+0.0889739990234375,
+0.0,
+0.0,
+-0.0889739990234375,
+0.9957275390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+246.4,
+137.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 118.45,
+"y": 25.05
+},
+"M3D": [
+0.9899749755859375,
+0.136932373046875,
+0.0,
+0.0,
+-0.136932373046875,
+0.9899749755859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.1,
+144.9,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.050000000000007,
+"y": 24.55
+},
+"M3D": [
+0.99176025390625,
+0.12457275390625,
+0.0,
+0.0,
+-0.12457275390625,
+0.99176025390625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+247.4,
+136.25,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 117.5,
+"y": 24.3
+},
+"M3D": [
+0.9971923828125,
+0.0448455810546875,
+0.0,
+0.0,
+-0.0448455810546875,
+0.9971923828125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.65,
+149.35,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.050000000000007,
+"y": 24.650000000000003
+},
+"M3D": [
+0.990570068359375,
+-0.129608154296875,
+0.0,
+0.0,
+0.129608154296875,
+0.990570068359375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+241.3,
+145.1,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 117.45,
+"y": 24.3
+},
+"M3D": [
+0.99786376953125,
+-0.035247802734375,
+0.0,
+0.0,
+0.035247802734375,
+0.99786376953125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.65,
+152.0,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 24.55
+},
+"M3D": [
+0.9772796630859375,
+-0.208648681640625,
+0.0,
+0.0,
+0.208648681640625,
+0.9772796630859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+240.85,
+144.9,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 117.45,
+"y": 24.3
+},
+"M3D": [
+0.9961395263671875,
+-0.0667572021484375,
+0.0,
+0.0,
+0.0667572021484375,
+0.9961395263671875,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.5,
+153.6,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 24.55
+},
+"M3D": [
+0.9700927734375,
+-0.2393798828125,
+0.0,
+0.0,
+0.2393798828125,
+0.9700927734375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+240.45,
+145.75,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 12,
+"DU": 1,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 117.5,
+"y": 24.25
+},
+"M3D": [
+0.994293212890625,
+-0.08795166015625,
+0.0,
+0.0,
+0.08795166015625,
+0.994293212890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+196.25,
+157.65,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 41.0,
+"y": 24.55
+},
+"M3D": [
+0.9645843505859375,
+-0.25994873046875,
+0.0,
+0.0,
+0.25994873046875,
+0.9645843505859375,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+240.1,
+148.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 13,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "brim under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 118.5,
+"y": 25.0
+},
+"M3D": [
+0.999267578125,
+0.021820068359375,
+0.0,
+0.0,
+-0.021820068359375,
+0.999267578125,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+195.15,
+152.7,
+0.0,
+1.0
+]
+}
+},
+{
+"SI": {
+"SN": "brim side",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 40.95,
+"y": 24.6
+},
+"M3D": [
+0.9996337890625,
+0.009368896484375,
+0.0,
+0.0,
+-0.009368896484375,
+0.9996337890625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+245.1,
+138.85,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "face base",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0268",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "hat alone",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0269",
+"M3D": [
+0.999908447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+0.999908447265625,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "brim under",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0270",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "brim side",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0271",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "arm bg",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0243",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "boyfriend dj body shirt blowing slowly",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "shirt blow 1",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 64.60000000000001,
+"y": 47.7
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+56.25,
+-15.95,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 2,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0273",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+60.0,
+-15.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 4,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "shirt blow 2",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 62.300000000000007,
+"y": 49.1
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+64.0,
+-16.2,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 6,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0275",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+59.0,
+-17.0,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 8,
+"DU": 2,
+"E": [
+{
+"SI": {
+"SN": "shirt blow 3",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 66.05,
+"y": 49.5
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+57.65,
+-17.65,
+0.0,
+1.0
+]
+}
+}
+]
+},
+{
+"I": 10,
+"DU": 2,
+"E": [
+{
+"ASI": {
+"N": "0277",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+55.0,
+-16.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+},
+{
+"LN": "Layer_1",
+"FR": [
+{
+"I": 0,
+"DU": 12,
+"E": [
+{
+"SI": {
+"SN": "body under",
+"IN": "",
+"ST": "G",
+"FF": 0,
+"LP": "LP",
+"TRP": {
+"x": 110.75,
+"y": 108.25
+},
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+17.15,
+-0.35,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shirt blow 1",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0272",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shirt blow 2",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0274",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "shirt blow 3",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0276",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "body under",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0278",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+},
+{
+"SN": "pieces bg",
+"TL": {
+"L": [
+{
+"LN": "Layer_2",
+"FR": [
+{
+"I": 0,
+"DU": 1,
+"E": [
+{
+"ASI": {
+"N": "0244",
+"M3D": [
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0,
+0.0,
+0.0,
+0.0,
+0.0,
+1.0
+]
+}
+}
+]
+}
+]
+}
+]
+}
+}
+]
+},
+"MD": {
+"FRT": 24.0
+}
+}
\ No newline at end of file
diff --git a/assets/ui/freeplay/freeplay-boyfriend/spritemap1.json b/assets/ui/freeplay/freeplay-boyfriend/spritemap1.json
new file mode 100644
index 0000000..d2c1da0
--- /dev/null
+++ b/assets/ui/freeplay/freeplay-boyfriend/spritemap1.json
@@ -0,0 +1,290 @@
+{"ATLAS": {"SPRITES":[
+{"SPRITE" : {"name": "0000","x":2793,"y":1204,"w":163,"h":122,"rotated": false}},
+{"SPRITE" : {"name": "0001","x":835,"y":434,"w":327,"h":338,"rotated": false}},
+{"SPRITE" : {"name": "0002","x":3184,"y":934,"w":290,"h":169,"rotated": false}},
+{"SPRITE" : {"name": "0003","x":276,"y":870,"w":248,"h":203,"rotated": false}},
+{"SPRITE" : {"name": "0004","x":3269,"y":713,"w":313,"h":219,"rotated": false}},
+{"SPRITE" : {"name": "0005","x":3902,"y":1508,"w":72,"h":33,"rotated": false}},
+{"SPRITE" : {"name": "0006","x":3583,"y":1389,"w":133,"h":85,"rotated": false}},
+{"SPRITE" : {"name": "0007","x":1677,"y":1398,"w":150,"h":70,"rotated": false}},
+{"SPRITE" : {"name": "0008","x":226,"y":1075,"w":265,"h":142,"rotated": false}},
+{"SPRITE" : {"name": "0009","x":3584,"y":713,"w":255,"h":256,"rotated": false}},
+{"SPRITE" : {"name": "0010","x":276,"y":540,"w":135,"h":91,"rotated": false}},
+{"SPRITE" : {"name": "0011","x":773,"y":1222,"w":116,"h":147,"rotated": false}},
+{"SPRITE" : {"name": "0012","x":3694,"y":1275,"w":124,"h":112,"rotated": false}},
+{"SPRITE" : {"name": "0013","x":3269,"y":602,"w":160,"h":106,"rotated": false}},
+{"SPRITE" : {"name": "0014","x":3727,"y":971,"w":96,"h":127,"rotated": false}},
+{"SPRITE" : {"name": "0015","x":1736,"y":1128,"w":196,"h":153,"rotated": false}},
+{"SPRITE" : {"name": "0016","x":3521,"y":1128,"w":171,"h":147,"rotated": false}},
+{"SPRITE" : {"name": "0017","x":3074,"y":1045,"w":99,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0018","x":276,"y":637,"w":405,"h":231,"rotated": false}},
+{"SPRITE" : {"name": "0019","x":226,"y":1021,"w":45,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0020","x":2319,"y":1173,"w":45,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0021","x":933,"y":1500,"w":45,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0022","x":1596,"y":1508,"w":45,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0023","x":2633,"y":1508,"w":45,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0024","x":1031,"y":316,"w":21,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0025","x":1031,"y":371,"w":21,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0026","x":1489,"y":434,"w":21,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0027","x":1489,"y":489,"w":21,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0028","x":1489,"y":544,"w":21,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0029","x":2273,"y":1287,"w":42,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0030","x":1601,"y":1397,"w":42,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0031","x":1601,"y":1452,"w":42,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0032","x":3976,"y":1508,"w":42,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0033","x":4020,"y":1508,"w":42,"h":53,"rotated": false}},
+{"SPRITE" : {"name": "0034","x":1175,"y":1490,"w":84,"h":45,"rotated": false}},
+{"SPRITE" : {"name": "0035","x":1088,"y":1490,"w":85,"h":47,"rotated": false}},
+{"SPRITE" : {"name": "0036","x":2191,"y":1491,"w":77,"h":48,"rotated": false}},
+{"SPRITE" : {"name": "0037","x":610,"y":1011,"w":70,"h":48,"rotated": false}},
+{"SPRITE" : {"name": "0038","x":2409,"y":1463,"w":135,"h":57,"rotated": false}},
+{"SPRITE" : {"name": "0039","x":2191,"y":1390,"w":79,"h":99,"rotated": false}},
+{"SPRITE" : {"name": "0040","x":3297,"y":1248,"w":156,"h":98,"rotated": false}},
+{"SPRITE" : {"name": "0041","x":3507,"y":1477,"w":70,"h":67,"rotated": false}},
+{"SPRITE" : {"name": "0042","x":2683,"y":1500,"w":65,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0043","x":2319,"y":1265,"w":128,"h":116,"rotated": false}},
+{"SPRITE" : {"name": "0044","x":816,"y":709,"w":14,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0045","x":2142,"y":711,"w":14,"h":12,"rotated": false}},
+{"SPRITE" : {"name": "0046","x":3200,"y":1348,"w":117,"h":108,"rotated": false}},
+{"SPRITE" : {"name": "0047","x":3820,"y":1275,"w":115,"h":113,"rotated": false}},
+{"SPRITE" : {"name": "0048","x":433,"y":1400,"w":133,"h":78,"rotated": false}},
+{"SPRITE" : {"name": "0049","x":3718,"y":1389,"w":98,"h":115,"rotated": false}},
+{"SPRITE" : {"name": "0050","x":1082,"y":774,"w":76,"h":105,"rotated": false}},
+{"SPRITE" : {"name": "0051","x":293,"y":1524,"w":40,"h":46,"rotated": false}},
+{"SPRITE" : {"name": "0052","x":3184,"y":861,"w":82,"h":71,"rotated": false}},
+{"SPRITE" : {"name": "0053","x":3191,"y":1458,"w":91,"h":83,"rotated": false}},
+{"SPRITE" : {"name": "0054","x":104,"y":1470,"w":91,"h":83,"rotated": false}},
+{"SPRITE" : {"name": "0055","x":1677,"y":1470,"w":91,"h":83,"rotated": false}},
+{"SPRITE" : {"name": "0056","x":891,"y":1222,"w":96,"h":175,"rotated": false}},
+{"SPRITE" : {"name": "0057","x":452,"y":1223,"w":96,"h":175,"rotated": false}},
+{"SPRITE" : {"name": "0058","x":550,"y":1223,"w":96,"h":175,"rotated": false}},
+{"SPRITE" : {"name": "0059","x":2093,"y":1390,"w":96,"h":110,"rotated": false}},
+{"SPRITE" : {"name": "0060","x":3319,"y":1445,"w":92,"h":93,"rotated": false}},
+{"SPRITE" : {"name": "0061","x":526,"y":1065,"w":245,"h":156,"rotated": false}},
+{"SPRITE" : {"name": "0062","x":1792,"y":969,"w":249,"h":157,"rotated": false}},
+{"SPRITE" : {"name": "0063","x":3476,"y":971,"w":249,"h":155,"rotated": false}},
+{"SPRITE" : {"name": "0064","x":2573,"y":964,"w":252,"h":156,"rotated": false}},
+{"SPRITE" : {"name": "0065","x":1164,"y":753,"w":292,"h":203,"rotated": false}},
+{"SPRITE" : {"name": "0066","x":3319,"y":1348,"w":129,"h":95,"rotated": false}},
+{"SPRITE" : {"name": "0067","x":648,"y":1371,"w":125,"h":98,"rotated": false}},
+{"SPRITE" : {"name": "0068","x":1158,"y":1323,"w":132,"h":99,"rotated": false}},
+{"SPRITE" : {"name": "0069","x":2,"y":918,"w":222,"h":217,"rotated": false}},
+{"SPRITE" : {"name": "0070","x":1770,"y":1470,"w":86,"h":84,"rotated": false}},
+{"SPRITE" : {"name": "0071","x":3476,"y":934,"w":106,"h":35,"rotated": false}},
+{"SPRITE" : {"name": "0072","x":363,"y":1434,"w":63,"h":41,"rotated": false}},
+{"SPRITE" : {"name": "0073","x":1792,"y":936,"w":102,"h":31,"rotated": false}},
+{"SPRITE" : {"name": "0074","x":1375,"y":1456,"w":83,"h":96,"rotated": false}},
+{"SPRITE" : {"name": "0075","x":1539,"y":1123,"w":195,"h":166,"rotated": false}},
+{"SPRITE" : {"name": "0076","x":888,"y":1399,"w":94,"h":99,"rotated": false}},
+{"SPRITE" : {"name": "0077","x":1082,"y":881,"w":73,"h":67,"rotated": false}},
+{"SPRITE" : {"name": "0078","x":1278,"y":1434,"w":95,"h":94,"rotated": false}},
+{"SPRITE" : {"name": "0079","x":1989,"y":1390,"w":102,"h":110,"rotated": false}},
+{"SPRITE" : {"name": "0080","x":2941,"y":1470,"w":75,"h":92,"rotated": false}},
+{"SPRITE" : {"name": "0081","x":2530,"y":1078,"w":38,"h":20,"rotated": false}},
+{"SPRITE" : {"name": "0082","x":2350,"y":1526,"w":55,"h":33,"rotated": false}},
+{"SPRITE" : {"name": "0083","x":3583,"y":1476,"w":92,"h":64,"rotated": false}},
+{"SPRITE" : {"name": "0084","x":3413,"y":1477,"w":92,"h":64,"rotated": false}},
+{"SPRITE" : {"name": "0085","x":2272,"y":1473,"w":76,"h":85,"rotated": false}},
+{"SPRITE" : {"name": "0086","x":2004,"y":1287,"w":134,"h":101,"rotated": false}},
+{"SPRITE" : {"name": "0087","x":648,"y":1223,"w":116,"h":143,"rotated": false}},
+{"SPRITE" : {"name": "0088","x":118,"y":1268,"w":62,"h":98,"rotated": false}},
+{"SPRITE" : {"name": "0089","x":984,"y":1446,"w":102,"h":79,"rotated": false}},
+{"SPRITE" : {"name": "0090","x":2635,"y":589,"w":11,"h":10,"rotated": false}},
+{"SPRITE" : {"name": "0091","x":2648,"y":589,"w":11,"h":10,"rotated": false}},
+{"SPRITE" : {"name": "0092","x":2661,"y":589,"w":11,"h":10,"rotated": false}},
+{"SPRITE" : {"name": "0093","x":2674,"y":589,"w":11,"h":10,"rotated": false}},
+{"SPRITE" : {"name": "0094","x":2687,"y":589,"w":11,"h":10,"rotated": false}},
+{"SPRITE" : {"name": "0095","x":2700,"y":589,"w":11,"h":10,"rotated": false}},
+{"SPRITE" : {"name": "0096","x":2729,"y":589,"w":11,"h":8,"rotated": false}},
+{"SPRITE" : {"name": "0097","x":4082,"y":572,"w":12,"h":6,"rotated": false}},
+{"SPRITE" : {"name": "0098","x":2153,"y":384,"w":10,"h":6,"rotated": false}},
+{"SPRITE" : {"name": "0099","x":3841,"y":713,"w":244,"h":250,"rotated": false}},
+{"SPRITE" : {"name": "0100","x":1899,"y":662,"w":241,"h":305,"rotated": false}},
+{"SPRITE" : {"name": "0101","x":1899,"y":306,"w":252,"h":354,"rotated": false}},
+{"SPRITE" : {"name": "0102","x":2,"y":540,"w":272,"h":376,"rotated": false}},
+{"SPRITE" : {"name": "0103","x":1514,"y":306,"w":383,"h":398,"rotated": false}},
+{"SPRITE" : {"name": "0104","x":3469,"y":313,"w":383,"h":398,"rotated": false}},
+{"SPRITE" : {"name": "0105","x":2165,"y":303,"w":451,"h":420,"rotated": false}},
+{"SPRITE" : {"name": "0106","x":1055,"y":2,"w":457,"h":430,"rotated": false}},
+{"SPRITE" : {"name": "0107","x":2,"y":2,"w":411,"h":536,"rotated": false}},
+{"SPRITE" : {"name": "0108","x":2142,"y":725,"w":273,"h":227,"rotated": false}},
+{"SPRITE" : {"name": "0109","x":2,"y":1137,"w":179,"h":129,"rotated": false}},
+{"SPRITE" : {"name": "0110","x":1934,"y":1128,"w":190,"h":153,"rotated": false}},
+{"SPRITE" : {"name": "0111","x":2618,"y":602,"w":278,"h":360,"rotated": false}},
+{"SPRITE" : {"name": "0112","x":2573,"y":725,"w":41,"h":71,"rotated": false}},
+{"SPRITE" : {"name": "0113","x":2573,"y":798,"w":40,"h":62,"rotated": false}},
+{"SPRITE" : {"name": "0114","x":2898,"y":861,"w":284,"h":182,"rotated": false}},
+{"SPRITE" : {"name": "0115","x":3854,"y":546,"w":226,"h":164,"rotated": false}},
+{"SPRITE" : {"name": "0116","x":299,"y":1219,"w":151,"h":114,"rotated": false}},
+{"SPRITE" : {"name": "0117","x":526,"y":870,"w":145,"h":139,"rotated": false}},
+{"SPRITE" : {"name": "0118","x":1736,"y":1283,"w":122,"h":113,"rotated": false}},
+{"SPRITE" : {"name": "0119","x":989,"y":1262,"w":167,"h":91,"rotated": false}},
+{"SPRITE" : {"name": "0120","x":1158,"y":1262,"w":92,"h":59,"rotated": false}},
+{"SPRITE" : {"name": "0121","x":363,"y":1480,"w":82,"h":59,"rotated": false}},
+{"SPRITE" : {"name": "0122","x":1858,"y":1478,"w":85,"h":59,"rotated": false}},
+{"SPRITE" : {"name": "0123","x":2618,"y":303,"w":195,"h":284,"rotated": false}},
+{"SPRITE" : {"name": "0124","x":871,"y":774,"w":209,"h":249,"rotated": false}},
+{"SPRITE" : {"name": "0125","x":683,"y":774,"w":186,"h":289,"rotated": false}},
+{"SPRITE" : {"name": "0126","x":1517,"y":1291,"w":127,"h":104,"rotated": false}},
+{"SPRITE" : {"name": "0127","x":3064,"y":1266,"w":134,"h":106,"rotated": false}},
+{"SPRITE" : {"name": "0128","x":2449,"y":1265,"w":149,"h":99,"rotated": false}},
+{"SPRITE" : {"name": "0129","x":989,"y":1355,"w":138,"h":89,"rotated": false}},
+{"SPRITE" : {"name": "0130","x":118,"y":1380,"w":138,"h":88,"rotated": false}},
+{"SPRITE" : {"name": "0131","x":3450,"y":1388,"w":131,"h":87,"rotated": false}},
+{"SPRITE" : {"name": "0132","x":3937,"y":1335,"w":122,"h":104,"rotated": false}},
+{"SPRITE" : {"name": "0133","x":2140,"y":1287,"w":131,"h":101,"rotated": false}},
+{"SPRITE" : {"name": "0134","x":816,"y":655,"w":13,"h":19,"rotated": false}},
+{"SPRITE" : {"name": "0135","x":816,"y":726,"w":14,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0136","x":1489,"y":620,"w":16,"h":21,"rotated": false}},
+{"SPRITE" : {"name": "0137","x":2153,"y":306,"w":8,"h":23,"rotated": false}},
+{"SPRITE" : {"name": "0138","x":2573,"y":920,"w":42,"h":39,"rotated": false}},
+{"SPRITE" : {"name": "0139","x":2273,"y":1342,"w":43,"h":35,"rotated": false}},
+{"SPRITE" : {"name": "0140","x":244,"y":1524,"w":47,"h":40,"rotated": false}},
+{"SPRITE" : {"name": "0141","x":197,"y":1524,"w":45,"h":42,"rotated": false}},
+{"SPRITE" : {"name": "0142","x":2319,"y":1226,"w":43,"h":37,"rotated": false}},
+{"SPRITE" : {"name": "0143","x":1489,"y":661,"w":19,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0144","x":816,"y":693,"w":16,"h":14,"rotated": false}},
+{"SPRITE" : {"name": "0145","x":2142,"y":662,"w":18,"h":14,"rotated": false}},
+{"SPRITE" : {"name": "0146","x":1031,"y":426,"w":19,"h":6,"rotated": false}},
+{"SPRITE" : {"name": "0147","x":2618,"y":589,"w":15,"h":9,"rotated": false}},
+{"SPRITE" : {"name": "0148","x":2750,"y":1500,"w":64,"h":50,"rotated": false}},
+{"SPRITE" : {"name": "0149","x":2350,"y":1473,"w":55,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0150","x":197,"y":1470,"w":54,"h":52,"rotated": false}},
+{"SPRITE" : {"name": "0151","x":2444,"y":1078,"w":84,"h":35,"rotated": false}},
+{"SPRITE" : {"name": "0152","x":2016,"y":1502,"w":80,"h":35,"rotated": false}},
+{"SPRITE" : {"name": "0153","x":1489,"y":643,"w":20,"h":16,"rotated": false}},
+{"SPRITE" : {"name": "0154","x":2142,"y":695,"w":16,"h":14,"rotated": false}},
+{"SPRITE" : {"name": "0155","x":816,"y":637,"w":16,"h":16,"rotated": false}},
+{"SPRITE" : {"name": "0156","x":816,"y":676,"w":16,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0157","x":2153,"y":331,"w":8,"h":17,"rotated": false}},
+{"SPRITE" : {"name": "0158","x":3677,"y":1506,"w":56,"h":47,"rotated": false}},
+{"SPRITE" : {"name": "0159","x":1460,"y":1510,"w":47,"h":47,"rotated": false}},
+{"SPRITE" : {"name": "0160","x":2366,"y":954,"w":49,"h":51,"rotated": false}},
+{"SPRITE" : {"name": "0161","x":226,"y":970,"w":47,"h":49,"rotated": false}},
+{"SPRITE" : {"name": "0162","x":1460,"y":1456,"w":50,"h":52,"rotated": false}},
+{"SPRITE" : {"name": "0163","x":816,"y":743,"w":14,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0164","x":1489,"y":678,"w":15,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0165","x":2142,"y":678,"w":15,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0166","x":3735,"y":1506,"w":51,"h":49,"rotated": false}},
+{"SPRITE" : {"name": "0167","x":2366,"y":1007,"w":49,"h":49,"rotated": false}},
+{"SPRITE" : {"name": "0168","x":226,"y":918,"w":47,"h":50,"rotated": false}},
+{"SPRITE" : {"name": "0169","x":3431,"y":602,"w":36,"h":46,"rotated": false}},
+{"SPRITE" : {"name": "0170","x":258,"y":1380,"w":38,"h":47,"rotated": false}},
+{"SPRITE" : {"name": "0171","x":1458,"y":753,"w":13,"h":14,"rotated": false}},
+{"SPRITE" : {"name": "0172","x":4082,"y":546,"w":12,"h":12,"rotated": false}},
+{"SPRITE" : {"name": "0173","x":1473,"y":753,"w":13,"h":12,"rotated": false}},
+{"SPRITE" : {"name": "0174","x":2153,"y":350,"w":9,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0175","x":2573,"y":862,"w":42,"h":56,"rotated": false}},
+{"SPRITE" : {"name": "0176","x":183,"y":1137,"w":39,"h":56,"rotated": false}},
+{"SPRITE" : {"name": "0177","x":2407,"y":1522,"w":45,"h":45,"rotated": false}},
+{"SPRITE" : {"name": "0178","x":3431,"y":650,"w":32,"h":40,"rotated": false}},
+{"SPRITE" : {"name": "0179","x":980,"y":1527,"w":41,"h":43,"rotated": false}},
+{"SPRITE" : {"name": "0180","x":2611,"y":1122,"w":180,"h":182,"rotated": false}},
+{"SPRITE" : {"name": "0181","x":1860,"y":1283,"w":142,"h":96,"rotated": false}},
+{"SPRITE" : {"name": "0182","x":3941,"y":1126,"w":126,"h":207,"rotated": false}},
+{"SPRITE" : {"name": "0183","x":183,"y":1219,"w":114,"h":159,"rotated": false}},
+{"SPRITE" : {"name": "0184","x":2958,"y":1204,"w":104,"h":176,"rotated": false}},
+{"SPRITE" : {"name": "0185","x":640,"y":1471,"w":98,"h":69,"rotated": false}},
+{"SPRITE" : {"name": "0186","x":683,"y":637,"w":131,"h":121,"rotated": false}},
+{"SPRITE" : {"name": "0187","x":1164,"y":434,"w":323,"h":317,"rotated": false}},
+{"SPRITE" : {"name": "0188","x":3933,"y":1441,"w":136,"h":65,"rotated": false}},
+{"SPRITE" : {"name": "0189","x":3818,"y":1390,"w":113,"h":90,"rotated": false}},
+{"SPRITE" : {"name": "0190","x":2,"y":1268,"w":114,"h":122,"rotated": false}},
+{"SPRITE" : {"name": "0191","x":3727,"y":1100,"w":62,"h":22,"rotated": false}},
+{"SPRITE" : {"name": "0192","x":1256,"y":1175,"w":137,"h":146,"rotated": false}},
+{"SPRITE" : {"name": "0193","x":2713,"y":589,"w":14,"h":7,"rotated": false}},
+{"SPRITE" : {"name": "0194","x":3200,"y":1266,"w":86,"h":72,"rotated": false}},
+{"SPRITE" : {"name": "0195","x":2366,"y":1078,"w":76,"h":42,"rotated": false}},
+{"SPRITE" : {"name": "0196","x":258,"y":1434,"w":103,"h":88,"rotated": false}},
+{"SPRITE" : {"name": "0197","x":3001,"y":1382,"w":52,"h":73,"rotated": false}},
+{"SPRITE" : {"name": "0198","x":1677,"y":1291,"w":51,"h":87,"rotated": false}},
+{"SPRITE" : {"name": "0199","x":1424,"y":1333,"w":87,"h":121,"rotated": false}},
+{"SPRITE" : {"name": "0200","x":2827,"y":964,"w":59,"h":65,"rotated": false}},
+{"SPRITE" : {"name": "0201","x":1129,"y":1424,"w":147,"h":64,"rotated": false}},
+{"SPRITE" : {"name": "0202","x":2126,"y":1173,"w":191,"h":112,"rotated": false}},
+{"SPRITE" : {"name": "0203","x":2683,"y":1429,"w":133,"h":69,"rotated": false}},
+{"SPRITE" : {"name": "0204","x":3297,"y":1128,"w":222,"h":118,"rotated": false}},
+{"SPRITE" : {"name": "0205","x":1513,"y":1397,"w":86,"h":109,"rotated": false}},
+{"SPRITE" : {"name": "0206","x":1019,"y":1025,"w":50,"h":95,"rotated": false}},
+{"SPRITE" : {"name": "0207","x":3584,"y":1277,"w":106,"h":107,"rotated": false}},
+{"SPRITE" : {"name": "0208","x":2098,"y":1502,"w":73,"h":38,"rotated": false}},
+{"SPRITE" : {"name": "0209","x":568,"y":1400,"w":70,"h":101,"rotated": false}},
+{"SPRITE" : {"name": "0210","x":775,"y":1371,"w":111,"h":103,"rotated": false}},
+{"SPRITE" : {"name": "0211","x":2860,"y":1328,"w":81,"h":50,"rotated": false}},
+{"SPRITE" : {"name": "0212","x":2043,"y":969,"w":87,"h":142,"rotated": false}},
+{"SPRITE" : {"name": "0213","x":2273,"y":1383,"w":134,"h":88,"rotated": false}},
+{"SPRITE" : {"name": "0214","x":1945,"y":1502,"w":69,"h":46,"rotated": false}},
+{"SPRITE" : {"name": "0215","x":852,"y":1500,"w":79,"h":46,"rotated": false}},
+{"SPRITE" : {"name": "0216","x":415,"y":316,"w":418,"h":319,"rotated": false}},
+{"SPRITE" : {"name": "0217","x":1320,"y":964,"w":217,"h":209,"rotated": false}},
+{"SPRITE" : {"name": "0218","x":3455,"y":1277,"w":127,"h":109,"rotated": false}},
+{"SPRITE" : {"name": "0219","x":2,"y":1392,"w":100,"h":99,"rotated": false}},
+{"SPRITE" : {"name": "0220","x":2898,"y":602,"w":369,"h":257,"rotated": false}},
+{"SPRITE" : {"name": "0221","x":526,"y":1011,"w":82,"h":50,"rotated": false}},
+{"SPRITE" : {"name": "0222","x":2,"y":1493,"w":82,"h":45,"rotated": false}},
+{"SPRITE" : {"name": "0223","x":2546,"y":1508,"w":85,"h":28,"rotated": false}},
+{"SPRITE" : {"name": "0224","x":1512,"y":1508,"w":82,"h":30,"rotated": false}},
+{"SPRITE" : {"name": "0225","x":531,"y":1503,"w":82,"h":33,"rotated": false}},
+{"SPRITE" : {"name": "0226","x":447,"y":1480,"w":82,"h":54,"rotated": false}},
+{"SPRITE" : {"name": "0227","x":2366,"y":1122,"w":243,"h":141,"rotated": false}},
+{"SPRITE" : {"name": "0228","x":740,"y":1476,"w":110,"h":54,"rotated": false}},
+{"SPRITE" : {"name": "0229","x":2818,"y":1470,"w":121,"h":62,"rotated": false}},
+{"SPRITE" : {"name": "0230","x":2580,"y":1414,"w":101,"h":92,"rotated": false}},
+{"SPRITE" : {"name": "0231","x":3854,"y":313,"w":234,"h":231,"rotated": false}},
+{"SPRITE" : {"name": "0232","x":1082,"y":958,"w":236,"h":195,"rotated": false}},
+{"SPRITE" : {"name": "0233","x":2600,"y":1306,"w":124,"h":106,"rotated": false}},
+{"SPRITE" : {"name": "0234","x":835,"y":316,"w":194,"h":112,"rotated": false}},
+{"SPRITE" : {"name": "0235","x":1395,"y":1175,"w":120,"h":156,"rotated": false}},
+{"SPRITE" : {"name": "0236","x":1764,"y":706,"w":124,"h":228,"rotated": false}},
+{"SPRITE" : {"name": "0237","x":3727,"y":1126,"w":212,"h":147,"rotated": false}},
+{"SPRITE" : {"name": "0238","x":2417,"y":725,"w":154,"h":351,"rotated": false}},
+{"SPRITE" : {"name": "0239","x":1489,"y":706,"w":273,"h":256,"rotated": false}},
+{"SPRITE" : {"name": "0240","x":3431,"y":692,"w":24,"h":14,"rotated": false}},
+{"SPRITE" : {"name": "0241","x":2454,"y":1522,"w":50,"h":39,"rotated": false}},
+{"SPRITE" : {"name": "0242","x":3111,"y":1474,"w":70,"h":85,"rotated": false}},
+{"SPRITE" : {"name": "0243","x":2860,"y":1382,"w":139,"h":86,"rotated": false}},
+{"SPRITE" : {"name": "0244","x":3018,"y":1474,"w":91,"h":67,"rotated": false}},
+{"SPRITE" : {"name": "0245","x":1489,"y":599,"w":18,"h":19,"rotated": false}},
+{"SPRITE" : {"name": "0246","x":4082,"y":560,"w":12,"h":10,"rotated": false}},
+{"SPRITE" : {"name": "0247","x":2153,"y":367,"w":9,"h":15,"rotated": false}},
+{"SPRITE" : {"name": "0248","x":2153,"y":392,"w":8,"h":7,"rotated": false}},
+{"SPRITE" : {"name": "0249","x":2153,"y":401,"w":7,"h":6,"rotated": false}},
+{"SPRITE" : {"name": "0250","x":2153,"y":409,"w":7,"h":4,"rotated": false}},
+{"SPRITE" : {"name": "0251","x":2153,"y":415,"w":5,"h":4,"rotated": false}},
+{"SPRITE" : {"name": "0252","x":4088,"y":2,"w":3,"h":3,"rotated": false}},
+{"SPRITE" : {"name": "0253","x":4088,"y":7,"w":3,"h":2,"rotated": false}},
+{"SPRITE" : {"name": "0254","x":1646,"y":1291,"w":29,"h":366,"rotated": false}},
+{"SPRITE" : {"name": "0255","x":415,"y":2,"w":638,"h":312,"rotated": false}},
+{"SPRITE" : {"name": "0256","x":1514,"y":2,"w":649,"h":302,"rotated": false}},
+{"SPRITE" : {"name": "0257","x":2818,"y":2,"w":650,"h":298,"rotated": false}},
+{"SPRITE" : {"name": "0258","x":2165,"y":2,"w":651,"h":299,"rotated": false}},
+{"SPRITE" : {"name": "0259","x":2818,"y":302,"w":649,"h":298,"rotated": false}},
+{"SPRITE" : {"name": "0260","x":3470,"y":2,"w":616,"h":309,"rotated": false}},
+{"SPRITE" : {"name": "0261","x":1019,"y":1122,"w":43,"h":26,"rotated": false}},
+{"SPRITE" : {"name": "0262","x":3455,"y":1248,"w":43,"h":26,"rotated": false}},
+{"SPRITE" : {"name": "0263","x":1023,"y":1527,"w":43,"h":26,"rotated": false}},
+{"SPRITE" : {"name": "0264","x":773,"y":1065,"w":244,"h":155,"rotated": false}},
+{"SPRITE" : {"name": "0265","x":3841,"y":965,"w":246,"h":159,"rotated": false}},
+{"SPRITE" : {"name": "0266","x":1539,"y":964,"w":251,"h":157,"rotated": false}},
+{"SPRITE" : {"name": "0267","x":2827,"y":1045,"w":245,"h":157,"rotated": false}},
+{"SPRITE" : {"name": "0268","x":1019,"y":1155,"w":235,"h":105,"rotated": false}},
+{"SPRITE" : {"name": "0269","x":3074,"y":1105,"w":221,"h":159,"rotated": false}},
+{"SPRITE" : {"name": "0270","x":871,"y":1025,"w":122,"h":32,"rotated": false}},
+{"SPRITE" : {"name": "0271","x":3818,"y":1482,"w":82,"h":49,"rotated": false}},
+{"SPRITE" : {"name": "0272","x":2449,"y":1366,"w":129,"h":95,"rotated": false}},
+{"SPRITE" : {"name": "0273","x":1860,"y":1381,"w":127,"h":95,"rotated": false}},
+{"SPRITE" : {"name": "0274","x":3064,"y":1374,"w":125,"h":98,"rotated": false}},
+{"SPRITE" : {"name": "0275","x":1292,"y":1333,"w":130,"h":99,"rotated": false}},
+{"SPRITE" : {"name": "0276","x":2726,"y":1328,"w":132,"h":99,"rotated": false}},
+{"SPRITE" : {"name": "0277","x":299,"y":1335,"w":132,"h":97,"rotated": false}},
+{"SPRITE" : {"name": "0278","x":2142,"y":954,"w":222,"h":217,"rotated": false}}
+]},
+"meta": {
+"app": "Adobe Animate",
+"version": "23.0.0.407",
+"image": "spritemap1.png",
+"format": "RGBA8888",
+"size": {"w":4096,"h":1659},
+"resolution": "1"
+}
+}
diff --git a/assets/ui/freeplay/freeplay-boyfriend/spritemap1.png b/assets/ui/freeplay/freeplay-boyfriend/spritemap1.png
new file mode 100644
index 0000000..6eeb5a6
Binary files /dev/null and b/assets/ui/freeplay/freeplay-boyfriend/spritemap1.png differ
diff --git a/assets/ui/freeplay/freeplayBGdad.png b/assets/ui/freeplay/freeplayBGdad.png
new file mode 100644
index 0000000..5f17dc5
Binary files /dev/null and b/assets/ui/freeplay/freeplayBGdad.png differ
diff --git a/assets/ui/freeplay/freeplayRandom.ogg b/assets/ui/freeplay/freeplayRandom.ogg
new file mode 100644
index 0000000..92aed12
Binary files /dev/null and b/assets/ui/freeplay/freeplayRandom.ogg differ
diff --git a/assets/ui/freeplay/freeplaySelector.png b/assets/ui/freeplay/freeplaySelector.png
new file mode 100644
index 0000000..a5d74db
Binary files /dev/null and b/assets/ui/freeplay/freeplaySelector.png differ
diff --git a/assets/ui/freeplay/freeplaySelector.xml b/assets/ui/freeplay/freeplaySelector.xml
new file mode 100644
index 0000000..3f43f74
--- /dev/null
+++ b/assets/ui/freeplay/freeplaySelector.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/bf.png b/assets/ui/freeplay/icons/bf.png
new file mode 100644
index 0000000..c7da022
Binary files /dev/null and b/assets/ui/freeplay/icons/bf.png differ
diff --git a/assets/ui/freeplay/icons/bf.xml b/assets/ui/freeplay/icons/bf.xml
new file mode 100644
index 0000000..080f4ff
--- /dev/null
+++ b/assets/ui/freeplay/icons/bf.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/dad.png b/assets/ui/freeplay/icons/dad.png
new file mode 100644
index 0000000..481f9a6
Binary files /dev/null and b/assets/ui/freeplay/icons/dad.png differ
diff --git a/assets/ui/freeplay/icons/dad.xml b/assets/ui/freeplay/icons/dad.xml
new file mode 100644
index 0000000..e3556e7
--- /dev/null
+++ b/assets/ui/freeplay/icons/dad.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/darnell.png b/assets/ui/freeplay/icons/darnell.png
new file mode 100644
index 0000000..7f5a8d0
Binary files /dev/null and b/assets/ui/freeplay/icons/darnell.png differ
diff --git a/assets/ui/freeplay/icons/darnell.xml b/assets/ui/freeplay/icons/darnell.xml
new file mode 100644
index 0000000..835fefb
--- /dev/null
+++ b/assets/ui/freeplay/icons/darnell.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/gf.png b/assets/ui/freeplay/icons/gf.png
new file mode 100644
index 0000000..68c03a7
Binary files /dev/null and b/assets/ui/freeplay/icons/gf.png differ
diff --git a/assets/ui/freeplay/icons/gf.xml b/assets/ui/freeplay/icons/gf.xml
new file mode 100644
index 0000000..6ecc117
--- /dev/null
+++ b/assets/ui/freeplay/icons/gf.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/mom.png b/assets/ui/freeplay/icons/mom.png
new file mode 100644
index 0000000..fe2f0f0
Binary files /dev/null and b/assets/ui/freeplay/icons/mom.png differ
diff --git a/assets/ui/freeplay/icons/mom.xml b/assets/ui/freeplay/icons/mom.xml
new file mode 100644
index 0000000..25a184f
--- /dev/null
+++ b/assets/ui/freeplay/icons/mom.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/monster.png b/assets/ui/freeplay/icons/monster.png
new file mode 100644
index 0000000..ac7668b
Binary files /dev/null and b/assets/ui/freeplay/icons/monster.png differ
diff --git a/assets/ui/freeplay/icons/monster.xml b/assets/ui/freeplay/icons/monster.xml
new file mode 100644
index 0000000..747c0e9
--- /dev/null
+++ b/assets/ui/freeplay/icons/monster.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/parents-christmas.png b/assets/ui/freeplay/icons/parents-christmas.png
new file mode 100644
index 0000000..a115dc9
Binary files /dev/null and b/assets/ui/freeplay/icons/parents-christmas.png differ
diff --git a/assets/ui/freeplay/icons/parents-christmas.xml b/assets/ui/freeplay/icons/parents-christmas.xml
new file mode 100644
index 0000000..a2e6057
--- /dev/null
+++ b/assets/ui/freeplay/icons/parents-christmas.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/pico.png b/assets/ui/freeplay/icons/pico.png
new file mode 100644
index 0000000..0b16a4a
Binary files /dev/null and b/assets/ui/freeplay/icons/pico.png differ
diff --git a/assets/ui/freeplay/icons/pico.xml b/assets/ui/freeplay/icons/pico.xml
new file mode 100644
index 0000000..cd896c2
--- /dev/null
+++ b/assets/ui/freeplay/icons/pico.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/senpai.png b/assets/ui/freeplay/icons/senpai.png
new file mode 100644
index 0000000..86f0975
Binary files /dev/null and b/assets/ui/freeplay/icons/senpai.png differ
diff --git a/assets/ui/freeplay/icons/senpai.xml b/assets/ui/freeplay/icons/senpai.xml
new file mode 100644
index 0000000..039d3f5
--- /dev/null
+++ b/assets/ui/freeplay/icons/senpai.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/spirit.png b/assets/ui/freeplay/icons/spirit.png
new file mode 100644
index 0000000..878d5ec
Binary files /dev/null and b/assets/ui/freeplay/icons/spirit.png differ
diff --git a/assets/ui/freeplay/icons/spirit.xml b/assets/ui/freeplay/icons/spirit.xml
new file mode 100644
index 0000000..651e1fa
--- /dev/null
+++ b/assets/ui/freeplay/icons/spirit.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/spooky.png b/assets/ui/freeplay/icons/spooky.png
new file mode 100644
index 0000000..7c8c0d3
Binary files /dev/null and b/assets/ui/freeplay/icons/spooky.png differ
diff --git a/assets/ui/freeplay/icons/spooky.xml b/assets/ui/freeplay/icons/spooky.xml
new file mode 100644
index 0000000..2588df3
--- /dev/null
+++ b/assets/ui/freeplay/icons/spooky.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/freeplay/icons/tankman.png b/assets/ui/freeplay/icons/tankman.png
new file mode 100644
index 0000000..d94fc66
Binary files /dev/null and b/assets/ui/freeplay/icons/tankman.png differ
diff --git a/assets/ui/freeplay/icons/tankman.xml b/assets/ui/freeplay/icons/tankman.xml
new file mode 100644
index 0000000..1632d9b
--- /dev/null
+++ b/assets/ui/freeplay/icons/tankman.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/menu/cancelMenu.mp3 b/assets/ui/menu/cancelMenu.mp3
new file mode 100644
index 0000000..38d3aa8
Binary files /dev/null and b/assets/ui/menu/cancelMenu.mp3 differ
diff --git a/assets/ui/menu/cancelMenu.ogg b/assets/ui/menu/cancelMenu.ogg
new file mode 100644
index 0000000..d56d11d
Binary files /dev/null and b/assets/ui/menu/cancelMenu.ogg differ
diff --git a/assets/ui/menu/confirmMenu.mp3 b/assets/ui/menu/confirmMenu.mp3
new file mode 100644
index 0000000..7be96fb
Binary files /dev/null and b/assets/ui/menu/confirmMenu.mp3 differ
diff --git a/assets/ui/menu/confirmMenu.ogg b/assets/ui/menu/confirmMenu.ogg
new file mode 100644
index 0000000..f60010e
Binary files /dev/null and b/assets/ui/menu/confirmMenu.ogg differ
diff --git a/assets/ui/menu/freakyMenu.mp3 b/assets/ui/menu/freakyMenu.mp3
new file mode 100644
index 0000000..6278f1b
Binary files /dev/null and b/assets/ui/menu/freakyMenu.mp3 differ
diff --git a/assets/ui/menu/freakyMenu.ogg b/assets/ui/menu/freakyMenu.ogg
new file mode 100644
index 0000000..372111d
Binary files /dev/null and b/assets/ui/menu/freakyMenu.ogg differ
diff --git a/assets/ui/menu/items/credits.png b/assets/ui/menu/items/credits.png
new file mode 100644
index 0000000..01601cb
Binary files /dev/null and b/assets/ui/menu/items/credits.png differ
diff --git a/assets/ui/menu/items/credits.xml b/assets/ui/menu/items/credits.xml
new file mode 100644
index 0000000..f939bea
--- /dev/null
+++ b/assets/ui/menu/items/credits.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/menu/items/freeplay.png b/assets/ui/menu/items/freeplay.png
new file mode 100644
index 0000000..5b7fa86
Binary files /dev/null and b/assets/ui/menu/items/freeplay.png differ
diff --git a/assets/ui/menu/items/freeplay.xml b/assets/ui/menu/items/freeplay.xml
new file mode 100644
index 0000000..5a93e4c
--- /dev/null
+++ b/assets/ui/menu/items/freeplay.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/menu/items/merch.png b/assets/ui/menu/items/merch.png
new file mode 100644
index 0000000..1aac743
Binary files /dev/null and b/assets/ui/menu/items/merch.png differ
diff --git a/assets/ui/menu/items/merch.xml b/assets/ui/menu/items/merch.xml
new file mode 100644
index 0000000..7089c0d
--- /dev/null
+++ b/assets/ui/menu/items/merch.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/menu/items/options.png b/assets/ui/menu/items/options.png
new file mode 100644
index 0000000..2a926e6
Binary files /dev/null and b/assets/ui/menu/items/options.png differ
diff --git a/assets/ui/menu/items/options.xml b/assets/ui/menu/items/options.xml
new file mode 100644
index 0000000..a6ee629
--- /dev/null
+++ b/assets/ui/menu/items/options.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/menu/items/storymode.png b/assets/ui/menu/items/storymode.png
new file mode 100644
index 0000000..487c8fa
Binary files /dev/null and b/assets/ui/menu/items/storymode.png differ
diff --git a/assets/ui/menu/items/storymode.xml b/assets/ui/menu/items/storymode.xml
new file mode 100644
index 0000000..62b5c56
--- /dev/null
+++ b/assets/ui/menu/items/storymode.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/menu/menuBG.png b/assets/ui/menu/menuBG.png
new file mode 100644
index 0000000..0f92339
Binary files /dev/null and b/assets/ui/menu/menuBG.png differ
diff --git a/assets/ui/menu/menuBGYellow.png b/assets/ui/menu/menuBGYellow.png
new file mode 100644
index 0000000..35458e8
Binary files /dev/null and b/assets/ui/menu/menuBGYellow.png differ
diff --git a/assets/ui/menu/scrollMenu.mp3 b/assets/ui/menu/scrollMenu.mp3
new file mode 100644
index 0000000..33f5050
Binary files /dev/null and b/assets/ui/menu/scrollMenu.mp3 differ
diff --git a/assets/ui/menu/scrollMenu.ogg b/assets/ui/menu/scrollMenu.ogg
new file mode 100644
index 0000000..e5697c9
Binary files /dev/null and b/assets/ui/menu/scrollMenu.ogg differ
diff --git a/assets/ui/options/arrow.png b/assets/ui/options/arrow.png
new file mode 100644
index 0000000..528c436
Binary files /dev/null and b/assets/ui/options/arrow.png differ
diff --git a/assets/ui/options/categories/audio.png b/assets/ui/options/categories/audio.png
new file mode 100644
index 0000000..43ae353
Binary files /dev/null and b/assets/ui/options/categories/audio.png differ
diff --git a/assets/ui/options/categories/audio.xml b/assets/ui/options/categories/audio.xml
new file mode 100644
index 0000000..60239ac
--- /dev/null
+++ b/assets/ui/options/categories/audio.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/options/categories/controls.png b/assets/ui/options/categories/controls.png
new file mode 100644
index 0000000..f891a26
Binary files /dev/null and b/assets/ui/options/categories/controls.png differ
diff --git a/assets/ui/options/categories/controls.xml b/assets/ui/options/categories/controls.xml
new file mode 100644
index 0000000..e6da196
--- /dev/null
+++ b/assets/ui/options/categories/controls.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/options/categories/developer.png b/assets/ui/options/categories/developer.png
new file mode 100644
index 0000000..0e15f65
Binary files /dev/null and b/assets/ui/options/categories/developer.png differ
diff --git a/assets/ui/options/categories/developer.xml b/assets/ui/options/categories/developer.xml
new file mode 100644
index 0000000..6b31a1a
--- /dev/null
+++ b/assets/ui/options/categories/developer.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/options/categories/gameplay.png b/assets/ui/options/categories/gameplay.png
new file mode 100644
index 0000000..c7a93bf
Binary files /dev/null and b/assets/ui/options/categories/gameplay.png differ
diff --git a/assets/ui/options/categories/gameplay.xml b/assets/ui/options/categories/gameplay.xml
new file mode 100644
index 0000000..225a78b
--- /dev/null
+++ b/assets/ui/options/categories/gameplay.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/options/categories/graphics.png b/assets/ui/options/categories/graphics.png
new file mode 100644
index 0000000..3ed0dcb
Binary files /dev/null and b/assets/ui/options/categories/graphics.png differ
diff --git a/assets/ui/options/categories/graphics.xml b/assets/ui/options/categories/graphics.xml
new file mode 100644
index 0000000..c6ff59d
--- /dev/null
+++ b/assets/ui/options/categories/graphics.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/options/categories/misc.png b/assets/ui/options/categories/misc.png
new file mode 100644
index 0000000..d0565d0
Binary files /dev/null and b/assets/ui/options/categories/misc.png differ
diff --git a/assets/ui/options/categories/misc.xml b/assets/ui/options/categories/misc.xml
new file mode 100644
index 0000000..c85d1bc
--- /dev/null
+++ b/assets/ui/options/categories/misc.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/options/checkbox.json b/assets/ui/options/checkbox.json
new file mode 100644
index 0000000..7831a3f
--- /dev/null
+++ b/assets/ui/options/checkbox.json
@@ -0,0 +1,19 @@
+{
+ "path": "ui/options/checkbox",
+ "antialiasing": true,
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "checked",
+ "prefix": "Press"
+ },
+ {
+ "name": "unchecked",
+ "prefix": "Unselect"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/assets/ui/options/checkbox.png b/assets/ui/options/checkbox.png
new file mode 100644
index 0000000..29846f3
Binary files /dev/null and b/assets/ui/options/checkbox.png differ
diff --git a/assets/ui/options/checkbox.xml b/assets/ui/options/checkbox.xml
new file mode 100644
index 0000000..39902fe
--- /dev/null
+++ b/assets/ui/options/checkbox.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/bf.png b/assets/ui/story/props/bf.png
new file mode 100644
index 0000000..38ab63b
Binary files /dev/null and b/assets/ui/story/props/bf.png differ
diff --git a/assets/ui/story/props/bf.xml b/assets/ui/story/props/bf.xml
new file mode 100644
index 0000000..d017dc7
--- /dev/null
+++ b/assets/ui/story/props/bf.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/dad.png b/assets/ui/story/props/dad.png
new file mode 100644
index 0000000..aeca6d9
Binary files /dev/null and b/assets/ui/story/props/dad.png differ
diff --git a/assets/ui/story/props/dad.xml b/assets/ui/story/props/dad.xml
new file mode 100644
index 0000000..4aef1e2
--- /dev/null
+++ b/assets/ui/story/props/dad.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/darnell.png b/assets/ui/story/props/darnell.png
new file mode 100644
index 0000000..6cf509a
Binary files /dev/null and b/assets/ui/story/props/darnell.png differ
diff --git a/assets/ui/story/props/darnell.xml b/assets/ui/story/props/darnell.xml
new file mode 100644
index 0000000..c37b935
--- /dev/null
+++ b/assets/ui/story/props/darnell.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/gf.png b/assets/ui/story/props/gf.png
new file mode 100644
index 0000000..958fab0
Binary files /dev/null and b/assets/ui/story/props/gf.png differ
diff --git a/assets/ui/story/props/gf.xml b/assets/ui/story/props/gf.xml
new file mode 100644
index 0000000..8e1951e
--- /dev/null
+++ b/assets/ui/story/props/gf.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/mom.png b/assets/ui/story/props/mom.png
new file mode 100644
index 0000000..ddf0268
Binary files /dev/null and b/assets/ui/story/props/mom.png differ
diff --git a/assets/ui/story/props/mom.xml b/assets/ui/story/props/mom.xml
new file mode 100644
index 0000000..9d42017
--- /dev/null
+++ b/assets/ui/story/props/mom.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/nene.png b/assets/ui/story/props/nene.png
new file mode 100644
index 0000000..e823d5e
Binary files /dev/null and b/assets/ui/story/props/nene.png differ
diff --git a/assets/ui/story/props/nene.xml b/assets/ui/story/props/nene.xml
new file mode 100644
index 0000000..46581d8
--- /dev/null
+++ b/assets/ui/story/props/nene.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/parents-xmas.png b/assets/ui/story/props/parents-xmas.png
new file mode 100644
index 0000000..3fffc67
Binary files /dev/null and b/assets/ui/story/props/parents-xmas.png differ
diff --git a/assets/ui/story/props/parents-xmas.xml b/assets/ui/story/props/parents-xmas.xml
new file mode 100644
index 0000000..59f95d5
--- /dev/null
+++ b/assets/ui/story/props/parents-xmas.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/pico-player.png b/assets/ui/story/props/pico-player.png
new file mode 100644
index 0000000..bed2252
Binary files /dev/null and b/assets/ui/story/props/pico-player.png differ
diff --git a/assets/ui/story/props/pico-player.xml b/assets/ui/story/props/pico-player.xml
new file mode 100644
index 0000000..3c00d8c
--- /dev/null
+++ b/assets/ui/story/props/pico-player.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/pico.png b/assets/ui/story/props/pico.png
new file mode 100644
index 0000000..e9ba1bb
Binary files /dev/null and b/assets/ui/story/props/pico.png differ
diff --git a/assets/ui/story/props/pico.xml b/assets/ui/story/props/pico.xml
new file mode 100644
index 0000000..7b2a76c
--- /dev/null
+++ b/assets/ui/story/props/pico.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/senpai.png b/assets/ui/story/props/senpai.png
new file mode 100644
index 0000000..8e874dd
Binary files /dev/null and b/assets/ui/story/props/senpai.png differ
diff --git a/assets/ui/story/props/senpai.xml b/assets/ui/story/props/senpai.xml
new file mode 100644
index 0000000..ae7a53c
--- /dev/null
+++ b/assets/ui/story/props/senpai.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/spooky.png b/assets/ui/story/props/spooky.png
new file mode 100644
index 0000000..9fead53
Binary files /dev/null and b/assets/ui/story/props/spooky.png differ
diff --git a/assets/ui/story/props/spooky.xml b/assets/ui/story/props/spooky.xml
new file mode 100644
index 0000000..9e32317
--- /dev/null
+++ b/assets/ui/story/props/spooky.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/props/tankman.png b/assets/ui/story/props/tankman.png
new file mode 100644
index 0000000..7ae3e6f
Binary files /dev/null and b/assets/ui/story/props/tankman.png differ
diff --git a/assets/ui/story/props/tankman.xml b/assets/ui/story/props/tankman.xml
new file mode 100644
index 0000000..09889fc
--- /dev/null
+++ b/assets/ui/story/props/tankman.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/story/titles/test.png b/assets/ui/story/titles/test.png
new file mode 100644
index 0000000..d8fb15f
Binary files /dev/null and b/assets/ui/story/titles/test.png differ
diff --git a/assets/ui/story/titles/tutorial.png b/assets/ui/story/titles/tutorial.png
new file mode 100644
index 0000000..19a978a
Binary files /dev/null and b/assets/ui/story/titles/tutorial.png differ
diff --git a/assets/ui/story/titles/week1.png b/assets/ui/story/titles/week1.png
new file mode 100644
index 0000000..83d7307
Binary files /dev/null and b/assets/ui/story/titles/week1.png differ
diff --git a/assets/ui/story/titles/week2.png b/assets/ui/story/titles/week2.png
new file mode 100644
index 0000000..7d22cde
Binary files /dev/null and b/assets/ui/story/titles/week2.png differ
diff --git a/assets/ui/story/titles/week3.png b/assets/ui/story/titles/week3.png
new file mode 100644
index 0000000..8e47e6c
Binary files /dev/null and b/assets/ui/story/titles/week3.png differ
diff --git a/assets/ui/story/titles/week4.png b/assets/ui/story/titles/week4.png
new file mode 100644
index 0000000..7122f97
Binary files /dev/null and b/assets/ui/story/titles/week4.png differ
diff --git a/assets/ui/story/titles/week5.png b/assets/ui/story/titles/week5.png
new file mode 100644
index 0000000..1a3a02a
Binary files /dev/null and b/assets/ui/story/titles/week5.png differ
diff --git a/assets/ui/story/titles/week6.png b/assets/ui/story/titles/week6.png
new file mode 100644
index 0000000..0e02a8b
Binary files /dev/null and b/assets/ui/story/titles/week6.png differ
diff --git a/assets/ui/story/titles/week7.png b/assets/ui/story/titles/week7.png
new file mode 100644
index 0000000..75ebaaf
Binary files /dev/null and b/assets/ui/story/titles/week7.png differ
diff --git a/assets/ui/story/titles/weekend1.png b/assets/ui/story/titles/weekend1.png
new file mode 100644
index 0000000..74e825d
Binary files /dev/null and b/assets/ui/story/titles/weekend1.png differ
diff --git a/assets/ui/story/ui/arrows.png b/assets/ui/story/ui/arrows.png
new file mode 100644
index 0000000..a65750c
Binary files /dev/null and b/assets/ui/story/ui/arrows.png differ
diff --git a/assets/ui/story/ui/arrows.xml b/assets/ui/story/ui/arrows.xml
new file mode 100644
index 0000000..10e8b37
--- /dev/null
+++ b/assets/ui/story/ui/arrows.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/assets/ui/story/ui/difficulties/easy.png b/assets/ui/story/ui/difficulties/easy.png
new file mode 100644
index 0000000..793a345
Binary files /dev/null and b/assets/ui/story/ui/difficulties/easy.png differ
diff --git a/assets/ui/story/ui/difficulties/hard.png b/assets/ui/story/ui/difficulties/hard.png
new file mode 100644
index 0000000..0a3a6be
Binary files /dev/null and b/assets/ui/story/ui/difficulties/hard.png differ
diff --git a/assets/ui/story/ui/difficulties/normal.png b/assets/ui/story/ui/difficulties/normal.png
new file mode 100644
index 0000000..fa56964
Binary files /dev/null and b/assets/ui/story/ui/difficulties/normal.png differ
diff --git a/assets/ui/story/ui/lock.png b/assets/ui/story/ui/lock.png
new file mode 100644
index 0000000..21a81d0
Binary files /dev/null and b/assets/ui/story/ui/lock.png differ
diff --git a/assets/ui/story/weeks/test.json b/assets/ui/story/weeks/test.json
new file mode 100644
index 0000000..9912456
--- /dev/null
+++ b/assets/ui/story/weeks/test.json
@@ -0,0 +1,41 @@
+{
+ "name": "TEST",
+ "songs": [
+ "test"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#FFFFFF",
+ "motto": "TEST",
+ "storyPosition": 2147483647
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/tutorial.json b/assets/ui/story/weeks/tutorial.json
new file mode 100644
index 0000000..d858d91
--- /dev/null
+++ b/assets/ui/story/weeks/tutorial.json
@@ -0,0 +1,68 @@
+{
+ "name": "Tutorial",
+ "songs": [
+ "tutorial"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position": {
+ "x": 476,
+ "y": 24
+ },
+ "animation": {
+ "type": "sparrow",
+ "anims": [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position": {
+ "x": 895,
+ "y": 24
+ },
+ "animation": {
+ "type": "sparrow",
+ "anims": [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [
+ 30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
+ ]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
+ 28, 29
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "TEACHING TIME",
+ "storyPosition": 0
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/week1.json b/assets/ui/story/weeks/week1.json
new file mode 100644
index 0000000..cdf6503
--- /dev/null
+++ b/assets/ui/story/weeks/week1.json
@@ -0,0 +1,92 @@
+{
+ "name": "Week 1",
+ "songs": [
+ "bopeebo",
+ "fresh",
+ "dadbattle"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "dad",
+ "path": "ui/story/props/dad",
+ "position":
+ {
+ "x": 110,
+ "y": 4
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "DADDY DEAREST",
+ "storyPosition": 1
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/week2.json b/assets/ui/story/weeks/week2.json
new file mode 100644
index 0000000..084b115
--- /dev/null
+++ b/assets/ui/story/weeks/week2.json
@@ -0,0 +1,99 @@
+{
+ "name": "Week 2",
+ "songs": [
+ "spookeez",
+ "south",
+ "monster"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "spookykids",
+ "path": "ui/story/props/spooky",
+ "position":
+ {
+ "x": 110,
+ "y": 64
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [0, 1, 2, 3, 4, 5, 6, 7]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [8, 9, 10, 11, 12, 13, 14, 15]
+ }
+ ]
+ }
+ },
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "SPOOKY MONTH",
+ "storyPosition": 2
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/week3.json b/assets/ui/story/weeks/week3.json
new file mode 100644
index 0000000..301487b
--- /dev/null
+++ b/assets/ui/story/weeks/week3.json
@@ -0,0 +1,92 @@
+{
+ "name": "Week 3",
+ "songs": [
+ "pico",
+ "philly-nice",
+ "blammed"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "pico",
+ "path": "ui/story/props/pico",
+ "position":
+ {
+ "x": 110,
+ "y": 64
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "PICO",
+ "storyPosition": 3
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/week4.json b/assets/ui/story/weeks/week4.json
new file mode 100644
index 0000000..ea9444d
--- /dev/null
+++ b/assets/ui/story/weeks/week4.json
@@ -0,0 +1,92 @@
+{
+ "name": "Week 4",
+ "songs": [
+ "satin-panties",
+ "high",
+ "milf"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "mom",
+ "path": "ui/story/props/mom",
+ "position":
+ {
+ "x": 110,
+ "y": 12
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "MOMMY MUST MURDER",
+ "storyPosition": 4
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/week5.json b/assets/ui/story/weeks/week5.json
new file mode 100644
index 0000000..7297909
--- /dev/null
+++ b/assets/ui/story/weeks/week5.json
@@ -0,0 +1,92 @@
+{
+ "name": "Week 5",
+ "songs": [
+ "cocoa",
+ "eggnog",
+ "winter-horrorland"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "parents-xmas",
+ "path": "ui/story/props/parents-xmas",
+ "position":
+ {
+ "x": 26,
+ "y": 12
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "RED SNOW",
+ "storyPosition": 5
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/week6.json b/assets/ui/story/weeks/week6.json
new file mode 100644
index 0000000..a375874
--- /dev/null
+++ b/assets/ui/story/weeks/week6.json
@@ -0,0 +1,92 @@
+{
+ "name": "Week 6",
+ "songs": [
+ "senpai",
+ "roses",
+ "thorns"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "senpai",
+ "path": "ui/story/props/senpai",
+ "position":
+ {
+ "x": 110,
+ "y": 64
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "HATING SIMULATOR FT. MOAWLING",
+ "storyPosition": 6
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/week7.json b/assets/ui/story/weeks/week7.json
new file mode 100644
index 0000000..2b283f6
--- /dev/null
+++ b/assets/ui/story/weeks/week7.json
@@ -0,0 +1,92 @@
+{
+ "name": "Week 7",
+ "songs": [
+ "ugh",
+ "guns",
+ "stress"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "tankman",
+ "path": "ui/story/props/tankman",
+ "position":
+ {
+ "x": 110,
+ "y": 28
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "bf",
+ "path": "ui/story/props/bf",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "gf",
+ "path": "ui/story/props/gf",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#F9CF51",
+ "motto": "TANKMAN FT. JOHNNYUTAH",
+ "storyPosition": 7
+}
\ No newline at end of file
diff --git a/assets/ui/story/weeks/weekend1.json b/assets/ui/story/weeks/weekend1.json
new file mode 100644
index 0000000..237492f
--- /dev/null
+++ b/assets/ui/story/weeks/weekend1.json
@@ -0,0 +1,93 @@
+{
+ "name": "Weekend 1",
+ "songs": [
+ "darnell",
+ "lit-up",
+ "2hot",
+ "blazin"
+ ],
+ "startLocked": false,
+ "songToUnlock": "",
+ "weekToUnlock": "",
+ "visibleWhenLocked": true,
+ "sprites": [
+ {
+ "id": "darnell",
+ "path": "ui/story/props/darnell",
+ "position":
+ {
+ "x": 110,
+ "y": 64
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "pico",
+ "path": "ui/story/props/pico-player",
+ "position":
+ {
+ "x": 476,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "idle",
+ "prefix": "idle0",
+ "framerate": 24
+ },
+ {
+ "name": "confirm",
+ "prefix": "confirm0",
+ "framerate": 24
+ }
+ ]
+ }
+ },
+ {
+ "id": "nene",
+ "path": "ui/story/props/nene",
+ "position":
+ {
+ "x": 895,
+ "y": 24
+ },
+ "animation":
+ {
+ "type": "sparrow",
+ "anims":
+ [
+ {
+ "name": "danceLeft",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
+ },
+ {
+ "name": "danceRight",
+ "prefix": "idle0",
+ "framerate": 24,
+ "indices": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ }
+ ]
+ }
+ }
+ ],
+ "background": "#413CAE",
+ "motto": "DUE DEBTS",
+ "storyPosition": 8
+}
\ No newline at end of file
diff --git a/assets/ui/title/gfDanceTitle.png b/assets/ui/title/gfDanceTitle.png
new file mode 100644
index 0000000..5685a7e
Binary files /dev/null and b/assets/ui/title/gfDanceTitle.png differ
diff --git a/assets/ui/title/gfDanceTitle.xml b/assets/ui/title/gfDanceTitle.xml
new file mode 100644
index 0000000..1a046a5
--- /dev/null
+++ b/assets/ui/title/gfDanceTitle.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/title/introText.xml b/assets/ui/title/introText.xml
new file mode 100644
index 0000000..43e972d
--- /dev/null
+++ b/assets/ui/title/introText.xml
@@ -0,0 +1,290 @@
+
+
+
+
+ The
+ Funkin Crew Inc
+
+
+ presents
+
+
+
+
+
+ In association
+ with
+
+
+ newgrounds
+
+
+
+
+
+
+
+
+
+
+
+
+ Friday
+
+
+ Night
+
+
+ Funkin
+
+
+
+
+
+
+
+ shoutouts to tom fulp
+ lmao
+
+
+ Ludum dare
+ extraordinaire
+
+
+ cyberzone
+ coming soon
+
+
+ love to thriftman
+ swag
+
+
+ ultimate rhythm gaming
+ probably
+
+
+ dope ass game
+ playstation magazine
+
+
+ in loving memory of
+ henryeyes
+
+
+ dancin
+ forever
+
+
+ funkin
+ forever
+
+
+ ritz dx
+ rest in peace lol
+
+
+ rate five
+ pls no blam
+
+
+ rhythm gaming
+ ultimate
+
+
+ game of the year
+ forever
+
+
+ you already know
+ we really out here
+
+
+ rise and grind
+ love to luis
+
+
+ like parappa
+ but cooler
+
+
+ album of the year
+ chuckie finster
+
+
+ free gitaroo man
+ with love to wandaboy
+
+
+ better than geometry dash
+ fight me robtop
+
+
+ kiddbrute for president
+ vote now
+
+
+ play dead estate
+ on newgrounds
+
+
+ this is a god damn prototype
+ we workin on it okay
+
+
+ women are real
+ this is official
+
+
+ too over exposed
+ newgrounds cant handle us
+
+
+ Hatsune Miku
+ biggest inspiration
+
+
+ too many people
+ my head hurts
+
+
+ newgrounds
+ forever
+
+
+ refined taste in music
+ if i say so myself
+
+
+ his name isnt keith
+ dumb eggy lol
+
+
+ his name isnt evan
+ silly tiktok
+
+
+ stream chuckie finster
+ on spotify
+
+
+ never forget to
+ pray to god
+
+
+ dont play rust
+ we only funkin
+
+
+ good bye
+ my penis
+
+
+ dababy
+ biggest inspiration
+
+
+ fashionably late
+ but here it is
+
+
+ yooooooooooo
+ yooooooooo
+
+
+ pico funny
+ pico funny
+
+
+ updates each friday
+ on time every time
+
+
+ shoutouts to mason
+ for da homies
+
+
+ bonk
+ get in the discord call
+
+
+ carpal tunnel
+ game design
+
+
+ downscroll
+ i dont know what that is
+
+
+ warning
+ choking hazard
+
+
+ devin chat
+ what an honorable man
+
+
+ kickstarter exclusive
+ intro text
+
+
+ cussing
+ we have it
+
+
+ parental advisory
+ explicit content
+
+
+ pico says
+ trans rights
+
+
+ album of the year
+ damage control
+
+
+ proudly made
+ via newgrounds pms
+
+
+ nicotine induced
+ game development
+
+
+ free crackheads
+ with love to figburn
+
+
+ press square
+ to open your popit menu
+
+
+ jojo sez
+ shoooooooom
+
+
+ updates each pico day
+ on time every time
+
+
+ macromedia software
+ legally obtained
+
+
+ under judgement
+ proud resident
+
+
+ make tom proud
+ weekly second
+
+
+ to enable pen pressure
+ disable windows ink
+
+
+ trending
+ only on x
+
+
+
\ No newline at end of file
diff --git a/assets/ui/title/logoBumpin.png b/assets/ui/title/logoBumpin.png
new file mode 100644
index 0000000..0847b26
Binary files /dev/null and b/assets/ui/title/logoBumpin.png differ
diff --git a/assets/ui/title/logoBumpin.xml b/assets/ui/title/logoBumpin.xml
new file mode 100644
index 0000000..f94daf3
--- /dev/null
+++ b/assets/ui/title/logoBumpin.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/ui/title/newgrounds_logo.png b/assets/ui/title/newgrounds_logo.png
new file mode 100644
index 0000000..26948b6
Binary files /dev/null and b/assets/ui/title/newgrounds_logo.png differ
diff --git a/assets/ui/title/newgrounds_logo_animated.png b/assets/ui/title/newgrounds_logo_animated.png
new file mode 100644
index 0000000..206262b
Binary files /dev/null and b/assets/ui/title/newgrounds_logo_animated.png differ
diff --git a/assets/ui/title/newgrounds_logo_classic.png b/assets/ui/title/newgrounds_logo_classic.png
new file mode 100644
index 0000000..9c74888
Binary files /dev/null and b/assets/ui/title/newgrounds_logo_classic.png differ
diff --git a/assets/ui/title/titleEnter.png b/assets/ui/title/titleEnter.png
new file mode 100644
index 0000000..4f70748
Binary files /dev/null and b/assets/ui/title/titleEnter.png differ
diff --git a/assets/ui/title/titleEnter.xml b/assets/ui/title/titleEnter.xml
new file mode 100644
index 0000000..3798b53
--- /dev/null
+++ b/assets/ui/title/titleEnter.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/checkstyle.json b/checkstyle.json
index 0a52a63..d6d2505 100644
--- a/checkstyle.json
+++ b/checkstyle.json
@@ -4,13 +4,6 @@
{
"props": {},
"type": "AvoidStarImport"
- },
- {
- "props": {
- "thresholdSimilar": 100,
- "thresholdIdentical": 60
- },
- "type": "CodeSimilarity"
},
{
"props": {},
@@ -134,6 +127,12 @@
"tokens": [",", ";"]
},
"type": "WhitespaceAfter"
+ },
+ {
+ "props": {
+ "format": "^\\s*(TODO|FIXME|HACK|XXX|BUG)"
+ },
+ "type": "TODOComment"
}
]
}
diff --git a/docs/BUILDING.md b/docs/BUILDING.md
new file mode 100644
index 0000000..090e4dc
--- /dev/null
+++ b/docs/BUILDING.md
@@ -0,0 +1,29 @@
+# Building TechNotDrip Engine
+## Android:
+1. Install Android Studio from [developer.android.com](https://developer.android.com/studio)
+2. Install Java 17 from [oracle.com](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
+ - NOTE: Write down the install location, we will need it later.
+3. Open Android Studio.
+4. Click on Projects.
+5. At the very right of the window, there should be three dots. Click on them.
+6. Select SDK Manager from the dropdown.
+ - NOTE: This will show the Android SDK location. Write it down, as we will need it later.
+7. Select the following:
+ - SDK Platforms:
+ - Android 10.0 ("Q")
+ - SDK Tools
+ - NOTE: Make sure to select show package details. That way you can download the exact version.
+ - Android SDK Build-Tools
+ - 32.0.0
+ - NDK (Side by Side)
+ - 21.4.7075529
+8. Apply and wait for it to download.
+9. Run `lime setup android` in command prompt.
+ - NOTE: This is where we use the locations from earlier. Replace [SDK_LOCATION] with the SDK location, and replace [JAVA_LOCATION] with the Java location.
+10. Put as following:
+ - Absolute path to Android SDK: [SDK_LOCATION]
+ - Absolute path to Android NDK: [SDK_LOCATION]/ndk/21.4.7075529
+ - Absolute path to Java JDK: [JAVA_LOCATION]
+11. You can now compile to Android!
+ - NOTE: Run and Debug from Visual Studio Code doesn't support Android Debugging, so you will need to compile from the command itself.
+ - The command is `lime build android`.
diff --git a/docs/README.md b/docs/README.md
index 53b7e29..7481a01 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,2 +1,4 @@
# TechNotDrip Engine
-fnf engine
+TechNotDrip is an engine for [Friday Night Funkin'](https://funkin.me/) made by TechnikTil and CrusherNotDrip!
+
+The source code is made from the ground up rather than forking the engine itself although most of the assets used are still from [FunkinCrew/funkin.assets](https://github.com/FunkinCrew/funkin.assets).
\ No newline at end of file
diff --git a/extras/concepts/credits.psd b/extras/concepts/credits.psd
new file mode 100644
index 0000000..9ce6eb5
Binary files /dev/null and b/extras/concepts/credits.psd differ
diff --git a/extras/flas/TechNotDrip/LogoBumpin-FixedSize.fla b/extras/flas/TechNotDrip/LogoBumpin-FixedSize.fla
new file mode 100644
index 0000000..2f7b468
Binary files /dev/null and b/extras/flas/TechNotDrip/LogoBumpin-FixedSize.fla differ
diff --git a/extras/flas/TechNotDrip/NoteAssets_ORGANIZED.fla b/extras/flas/TechNotDrip/NoteAssets_ORGANIZED.fla
new file mode 100644
index 0000000..e8b202a
Binary files /dev/null and b/extras/flas/TechNotDrip/NoteAssets_ORGANIZED.fla differ
diff --git a/extras/flas/TechNotDrip/OptionsStuff.fla b/extras/flas/TechNotDrip/OptionsStuff.fla
new file mode 100644
index 0000000..41d1df0
Binary files /dev/null and b/extras/flas/TechNotDrip/OptionsStuff.fla differ
diff --git a/extras/flas/TechNotDrip/OptionsStuffConceptIG.fla b/extras/flas/TechNotDrip/OptionsStuffConceptIG.fla
new file mode 100644
index 0000000..0d372fd
Binary files /dev/null and b/extras/flas/TechNotDrip/OptionsStuffConceptIG.fla differ
diff --git a/extras/flas/TechNotDrip/PressEnter-FixedWidth.fla b/extras/flas/TechNotDrip/PressEnter-FixedWidth.fla
new file mode 100644
index 0000000..eaba2b0
Binary files /dev/null and b/extras/flas/TechNotDrip/PressEnter-FixedWidth.fla differ
diff --git a/extras/flas/TechNotDrip/Website-Icon.fla b/extras/flas/TechNotDrip/Website-Icon.fla
new file mode 100644
index 0000000..9a6aebf
Binary files /dev/null and b/extras/flas/TechNotDrip/Website-Icon.fla differ
diff --git a/extras/flas/TechNotDrip/boyfriend freeplay animations v5.fla b/extras/flas/TechNotDrip/boyfriend freeplay animations v5.fla
new file mode 100644
index 0000000..93e4bf0
Binary files /dev/null and b/extras/flas/TechNotDrip/boyfriend freeplay animations v5.fla differ
diff --git a/extras/scripts/GenerateSongsFolder.hx b/extras/scripts/GenerateSongsFolder.hx
new file mode 100644
index 0000000..30084ad
--- /dev/null
+++ b/extras/scripts/GenerateSongsFolder.hx
@@ -0,0 +1,37 @@
+package;
+
+import haxe.Json;
+import sys.FileSystem;
+import sys.io.File;
+
+using StringTools;
+
+class GenerateSongsFolder
+{
+ public static function main()
+ {
+ var songsToGenerate:Array> = [];
+ var generateText:Array = File.getContent('./songsToGenerate.txt').split('\n');
+
+ for (i in generateText)
+ {
+ songsToGenerate.push(i.split(' - '));
+ }
+
+ for (song in songsToGenerate)
+ {
+ var yeah = {
+ "name": song[1]
+ };
+ var yeahAsString:String = Json.stringify(yeah, null, '\t').replace('\\r', '');
+
+ FileSystem.createDirectory('./' + song[0]);
+ File.saveContent('./' + song[0] + '/metadata.json', yeahAsString);
+ }
+ }
+
+ static function print(string:String)
+ {
+ Sys.stdout().writeString(string + '\n');
+ }
+}
diff --git a/extras/scripts/convert chart/.gitignore b/extras/scripts/convert chart/.gitignore
new file mode 100644
index 0000000..7276645
--- /dev/null
+++ b/extras/scripts/convert chart/.gitignore
@@ -0,0 +1,2 @@
+converted charts/*
+old charts/*
\ No newline at end of file
diff --git a/extras/scripts/convert chart/ConvertChart.hx b/extras/scripts/convert chart/ConvertChart.hx
new file mode 100644
index 0000000..8771d62
--- /dev/null
+++ b/extras/scripts/convert chart/ConvertChart.hx
@@ -0,0 +1,955 @@
+package;
+
+import haxe.Json;
+import haxe.io.Path;
+import json2object.JsonParser;
+import sys.FileSystem;
+import sys.io.File;
+
+using StringTools;
+
+class ConvertChart
+{
+ public static function main():Void
+ {
+ if (Sys.args().length > 0)
+ {
+ var argsFiltered:Array = Sys.args().join(' ').split('.\\');
+
+ for (i in 0...argsFiltered.length)
+ argsFiltered[i] = argsFiltered[i].trim();
+
+ argsFiltered.shift();
+ convertCharts(argsFiltered[0], argsFiltered[1]);
+ return;
+ }
+
+ Sys.stdout().writeString('Welcome to TechNotDrip converter!\n');
+ Sys.stdout().writeString('NOTE: If your song has a different variation (ex. erect), convert them seperately to avoid merging issues!\n');
+ Sys.stdout().writeString('Please type directory you want to convert: ');
+ Sys.stdout().flush();
+ final path = Sys.stdin().readLine();
+
+ if (FileSystem.isDirectory(path))
+ convertCharts(path);
+ else
+ throw "Not supported!";
+ }
+
+ static function convertCharts(path:String, ?savePath:Null):Void
+ {
+ var chartStructure:ChartStructure = {charts: []};
+ var metadata:MetadataStructure = null;
+ var events:EventsStructure = null;
+
+ var songName:String = Path.withoutDirectory(path);
+ for (file in FileSystem.readDirectory(path))
+ {
+ if (!file.endsWith('.json') || file == 'events.json')
+ continue;
+
+ var withoutExt:String = Path.withoutExtension(file);
+ if (withoutExt == '$songName-metadata' || withoutExt == '$songName-chart')
+ {
+ var vsliceChartJson:JsonParser = new JsonParser();
+ vsliceChartJson.fromJson(File.getContent(Path.join([path, '$songName-chart.json'])), '$songName-chart.json');
+ var vsliceMetadataJson:JsonParser = new JsonParser();
+ vsliceMetadataJson.fromJson(File.getContent(Path.join([path, '$songName-metadata.json'])), '$songName-metadata.json');
+ var convertedThings:Array = convertVSlice(vsliceChartJson.value, vsliceMetadataJson.value);
+ chartStructure = convertedThings[0];
+ metadata = convertedThings[1];
+ events = convertedThings[2];
+ break;
+ }
+ /*else
+ {
+ var legacyChart:LegacyChartStructure = cast Json.parse(File.getContent(Path.join([path, file]))).song;
+
+ var difficulty:String = if (withoutExt != songName) withoutExt.substring(withoutExt.lastIndexOf('-') + 1); else 'normal';
+ var convertedThings:Array = convertLegacyChart(legacyChart, difficulty);
+
+ chartStructure.charts.push(convertedThings[0]);
+
+ if (metadata == null)
+ metadata = convertedThings[1];
+
+ if (events == null)
+ {
+ events = {
+ events: convertedThings[2]
+ };
+ }
+ }*/
+ /*{
+ Sys.stdout().writeString('\nPlease enter difficulty ID for $file (Leave enter to skip): ');
+ Sys.stdout().flush();
+ difficulty = Sys.stdin().readLine();
+ }*/
+ }
+
+ var chartPath:String = '';
+ if (savePath != null)
+ chartPath = savePath;
+ else
+ {
+ Sys.stdout().writeString('\nWhere should the converted chart be saved? (this should be a path): ');
+ Sys.stdout().flush();
+ chartPath = Sys.stdin().readLine();
+ }
+
+ if (!FileSystem.exists(chartPath))
+ FileSystem.createDirectory(chartPath);
+
+ File.saveContent(Path.join([chartPath, 'chart.json']), Json.stringify(chartStructure, '\t'));
+ File.saveContent(Path.join([chartPath, 'metadata.json']), Json.stringify(metadata, '\t'));
+ File.saveContent(Path.join([chartPath, 'events.json']), Json.stringify(events, '\t'));
+
+ Sys.stdout().writeString('\nDONE!!');
+ Sys.stdout().flush();
+ }
+
+ static function convertLegacyChart(legacyChart:LegacyChartStructure, difficulty:String):Array
+ {
+ var chartConverted:ChartArrayElement = {
+ difficulty: '',
+ speed: 1,
+ rating: 0,
+ chart: []
+ };
+ var events:Array = [];
+
+ var bpmChanges:Array = [];
+
+ bpmChanges.insert(0, {bpm: legacyChart.bpm, time: 0, timeSignature: {numerator: 4, denominator: 4}});
+
+ chartConverted.difficulty = difficulty;
+ chartConverted.speed = legacyChart.speed;
+
+ var sectionTime:Float = 0;
+ var lastLengthInSteps:Float = 0;
+
+ function getLastBPMChange():BPMChangeData
+ return bpmChanges[bpmChanges.length - 1];
+
+ var lastCamera:String = '';
+ for (section in legacyChart.notes)
+ {
+ if (section.changeBPM)
+ {
+ bpmChanges.push({
+ bpm: section.bpm,
+ time: sectionTime,
+ timeSignature: {numerator: 4, denominator: 4}
+ });
+ }
+
+ if (section.lengthInSteps != lastLengthInSteps)
+ {
+ if (getLastBPMChange().time == sectionTime)
+ {
+ getLastBPMChange().timeSignature = {numerator: section.lengthInSteps / 4, denominator: 4};
+ }
+ else
+ {
+ bpmChanges.push({
+ bpm: getLastBPMChange().bpm,
+ time: sectionTime,
+ timeSignature: {numerator: section.lengthInSteps / 4, denominator: 4}
+ });
+ }
+
+ lastLengthInSteps = section.lengthInSteps;
+ }
+
+ var sectionCamera:String = section.mustHitSection ? 'player' : 'opponent';
+
+ if (section.gfSection)
+ sectionCamera = 'spectator';
+
+ if (sectionCamera != lastCamera)
+ {
+ events.push({
+ time: sectionTime,
+ name: 'camera',
+ args: ['strum' => sectionCamera]
+ });
+
+ sectionCamera = lastCamera;
+ }
+
+ // LEGACY NOTE PROPERTIES: time, direction, length, alt note/note type
+ for (note in section.sectionNotes)
+ {
+ if (note[0] < 0)
+ continue;
+
+ var notePush:NoteData = {
+ time: 0,
+ direction: 0,
+ type: '',
+ strum: ''
+ };
+
+ notePush.time = note[0];
+ notePush.direction = Std.int(note[1] % 4);
+
+ if (Std.isOfType(note[3], Bool))
+ notePush.type = note[3] ? 'alt' : '';
+ else if (Std.isOfType(note[3], String))
+ {
+ if (Std.parseInt(note[3]) != null)
+ {
+ var noteInt:Int = Std.parseInt(note[3]);
+ var psychNoteTypes:Array = ['', 'alt'];
+
+ if (psychNoteTypes.length <= noteInt)
+ continue;
+
+ notePush.type = psychNoteTypes[noteInt];
+ continue;
+ }
+
+ switch (note[3])
+ {
+ case 'Alt Animation':
+ notePush.type = 'alt';
+ case 'No Animation':
+ notePush.type = 'noanim';
+ case 'GF Sing':
+ notePush.strum = 'spectator';
+ case '':
+ default:
+ Sys.stdout().writeString('\nWhat is the notetype ID for ${note[3]}? (type null to ignore note): ');
+ Sys.stdout().flush();
+ final noteType:String = Sys.stdin().readLine();
+
+ if (noteType == 'null')
+ continue;
+ else
+ notePush.type = noteType;
+ }
+ }
+
+ // GF Note :trollface:
+ if (notePush.strum == '')
+ {
+ var isOpponent:Bool = false;
+
+ if (section.mustHitSection)
+ isOpponent = note[1] > 3;
+ else
+ isOpponent = note[1] < 4;
+
+ notePush.strum = isOpponent ? 'opponent' : 'player';
+ }
+
+ if (note[2] > 0)
+ notePush.length = note[2];
+
+ chartConverted.chart.push(notePush);
+ }
+
+ sectionTime += calculateCrochet(getLastBPMChange().bpm) * getLastBPMChange().timeSignature.numerator;
+ }
+
+ var metadata:MetadataStructure = {
+ name: legacyChart.song,
+ icon: legacyChart.player2, // its an attempt...
+ characters: [
+ 'player' => legacyChart.player1 ?? 'bf',
+ 'opponent' => legacyChart.player2 ?? 'dad',
+ 'spectator' => legacyChart.player3 ?? 'gf'
+ ],
+ stage: legacyChart.stage,
+ preview: {
+ start: 0,
+ end: 150000
+ },
+ bpmChanges: bpmChanges,
+ credits: {composer: 'Unknown', charter: 'Unknown'}
+ };
+
+ return [chartConverted, metadata, events];
+ }
+
+ static function convertVSlice(chartStructure:VSliceChartStructure, metadataStructure:VSliceMetadataStructure):Array
+ {
+ var chartConverted:ChartStructure = {
+ charts: []
+ };
+ for (difficulty in chartStructure.notes.keys())
+ {
+ var chartDifficultyConverted:ChartArrayElement = {
+ difficulty: difficulty,
+ speed: chartStructure.scrollSpeed.get(difficulty) ?? chartStructure.scrollSpeed.get('default') ?? 1,
+ rating: metadataStructure.playData.ratings.get(difficulty) ?? 0,
+ chart: []
+ };
+
+ for (note in chartStructure.notes.get(difficulty))
+ {
+ var notePush:NoteData = {
+ time: 0,
+ direction: 0,
+ type: '',
+ strum: ''
+ };
+
+ notePush.type = switch (note.kind)
+ {
+ case '', null:
+ '';
+ case 'mom', 'ugh', 'hehPrettyGood':
+ 'alt';
+ // TODO: blazin' stuff
+ default:
+ continue;
+ }
+
+ notePush.time = note.time;
+ notePush.direction = Std.int(note.data % 4);
+
+ notePush.strum = switch (Math.floor(note.data / 4))
+ {
+ case 0:
+ 'player';
+ default:
+ // we dont want random notes on the players side, do we?
+ 'opponent';
+ }
+
+ if (note.length != null && note.length > 0)
+ notePush.length = note.length;
+
+ chartDifficultyConverted.chart.push(notePush);
+ }
+
+ chartConverted.charts.push(chartDifficultyConverted);
+ }
+
+ var eventsConverted:EventsStructure = {
+ events: []
+ };
+
+ for (event in chartStructure.events)
+ {
+ var eventPush:EventData = {
+ time: event.time,
+ name: '',
+ args: new Map()
+ };
+
+ switch (event.eventKind)
+ {
+ case 'FocusCamera':
+ eventPush.name = 'camera';
+
+ var char:Int = (event.value?.char ?? event.value);
+ var posX:Float = event.value?.x ?? 0;
+ var posY:Float = event.value?.y ?? 0;
+
+ var duration:Float = event.value?.duration ?? 4;
+ var ease:Null = event.value?.ease;
+
+ var strum:Null = switch (Std.int(char))
+ {
+ case 0:
+ 'player';
+ case 1:
+ 'opponent';
+ case 2:
+ 'spectator';
+ default:
+ null;
+ }
+
+ if (strum != null)
+ eventPush.args.set('strum', strum);
+
+ eventPush.args.set('pos', {
+ x: posX,
+ y: posY
+ });
+
+ if (ease != null)
+ eventPush.args.set('tweenInfo', {duration: duration, ease: ease});
+
+ case 'ZoomCamera':
+ eventPush.name = 'zoom';
+
+ var zoom:Float = (event.value?.zoom ?? event.value) ?? 1;
+ var mode:String = event.value?.mode ?? 'direct';
+
+ var duration:Float = event.value?.duration ?? 4;
+ var ease:Null = event.value?.ease;
+
+ eventPush.args.set('zoom', zoom);
+ eventPush.args.set('direct', mode == 'direct');
+
+ if (ease != null)
+ eventPush.args.set('tweenInfo', {duration: duration, ease: ease});
+
+ case 'PlayAnimation':
+ eventPush.name = 'anim';
+
+ var target:String = event.value?.target ?? 'player';
+ var anim:String = event.value?.anim ?? 'idle';
+ var force:Bool = event.value?.anim ?? false;
+
+ target = switch (target)
+ {
+ case 'boyfriend', 'bf', 'player':
+ 'player';
+ case 'dad', 'opponent':
+ 'opponent';
+ case 'girlfriend', 'gf':
+ 'spectator';
+ default:
+ target;
+ }
+
+ eventPush.args = ['spr' => target, 'anim' => anim, 'force' => force];
+ default:
+ continue;
+ }
+
+ eventsConverted.events.push(eventPush);
+ }
+
+ var bpmChanges:Array = [];
+ for (timeChange in metadataStructure.timeChanges)
+ {
+ bpmChanges.push({
+ time: timeChange.timeStamp,
+ bpm: timeChange.bpm,
+ timeSignature: {
+ numerator: timeChange.timeSignatureNum,
+ denominator: timeChange.timeSignatureNum
+ }
+ });
+ }
+
+ var metadataConverted:MetadataStructure = {
+ characters: [
+ 'player' => metadataStructure.playData.characters.player,
+ 'opponent' => metadataStructure.playData.characters.opponent,
+ 'spectator' => metadataStructure.playData.characters.girlfriend
+ ],
+ bpmChanges: bpmChanges,
+ credits: {
+ composer: metadataStructure.artist,
+ charter: metadataStructure.charter
+ },
+ icon: metadataStructure.playData.characters.opponent,
+ name: metadataStructure.songName,
+ preview: {
+ start: metadataStructure.playData.previewStart,
+ end: metadataStructure.playData.previewEnd
+ },
+ stage: metadataStructure.playData.stage
+ };
+
+ return [chartConverted, metadataConverted, eventsConverted];
+ }
+
+ /**
+ * Calculate the crochet, which is the length between a beat.
+ * @param bpm The bpm to use for calculating.
+ * @return The crochet, in miliseconds.
+ */
+ static inline function calculateCrochet(bpm:Float):Float
+ {
+ return ((60 / bpm) * 1000);
+ }
+
+ public static function dynamicValueParse(json:hxjsonast.Json, name:String):Dynamic
+ {
+ return hxjsonast.Tools.getValue(json);
+ }
+
+ public static function dynamicValueWrite(value:Dynamic):String
+ {
+ return Json.parse(value);
+ }
+}
+
+/**
+ * Legacy Chart Structure, too lazy to add documentation to these, figure it out yourself lmao
+ */
+typedef LegacyChartStructure =
+{
+ /**
+ * idk burppppppppppppppp
+ */
+ var song:String;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default([])
+ var notes:Array;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default(150)
+ var bpm:Float;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default(true)
+ var needsVoices:Bool;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default(1)
+ var speed:Float;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default('bf')
+ var player1:String;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default('dad')
+ var player2:String;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default('gf')
+ var player3:String;
+
+ /**
+ * idk burppppppppppppppp
+ */
+ @:default('stage') // accomodate older chart that had stages based on the song.
+ var stage:String;
+
+ // GOTTA MAKE SURE. (variables we have in other mods, or stuff people have in other engines)
+ @:optional
+ var credits:SongCredits; // snc credits
+}
+
+/**
+ * Legacy Section Structure, too lazy to add documentation to these.
+ */
+typedef LegacySectionStructure =
+{
+ var sectionNotes:Array;
+ var lengthInSteps:Int;
+ var typeOfSection:Int;
+ var mustHitSection:Bool;
+ var bpm:Float;
+ var changeBPM:Bool;
+ var altAnim:Bool;
+
+ @:optional
+ @:default(false)
+ var gfSection:Bool;
+}
+
+// i am so sorry for the comments, it is 1:39 for Til and 3:39 for crusher.
+typedef ChartStructure =
+{
+ var charts:Array;
+
+ // @:default(funkin.util.Constants.VERSION_CHART)
+ @:optional
+ var version:String;
+}
+
+typedef EventsStructure =
+{
+ var events:Array;
+
+ // @:default(funkin.util.Constants.VERSION_SONG_EVENTS)
+ @:optional
+ var version:String;
+}
+
+/**
+ * That FUCKING oughhhhh~~~~~~~ BIRD THAT I HATE
+ */
+typedef ChartArrayElement =
+{
+ /**
+ * The Difficulty of the chart.
+ */
+ var difficulty:String;
+
+ /**
+ * The Scroll Speed of the song.
+ */
+ @:default(1)
+ var speed:Float;
+
+ /**
+ * The Rating of the song, this shows up in freeplay.
+ */
+ @:default(0)
+ var rating:Int;
+
+ /**
+ * The actual chart.
+ */
+ @:default([]) // fuck you smart guy
+ var chart:Array;
+}
+
+typedef MetadataStructure =
+{
+ /**
+ * The name of the song.
+ */
+ var name:String;
+
+ /**
+ * The Characters in this song.
+ * This goes by Character Type to Character ID.
+ */
+ @:default(['player' => 'bf', 'opponent' => 'dad', 'spectator' => 'gf'])
+ var characters:Map;
+
+ /**
+ * The setting (stay in school kids) you are in. Are you in a street where two maniacs want to kill you? Sure bud, youre not pico fnf.
+ */
+ @:default('mainStage')
+ var stage:String;
+
+ /**
+ * The audio preview. This plays if you hover over the song in freeplay.
+ */
+ @:default({start: 0, end: 150000})
+ var preview:
+ {
+ var start:Float;
+ var end:Float;
+ };
+
+ @:default([{bpm: 100, time: 0, timeSignature: {numerator: 4, denominator: 4}}])
+ var bpmChanges:Array;
+
+ /**
+ * The icon that shows up in freeplay.
+ */
+ var icon:String;
+
+ var credits:SongCredits;
+}
+
+typedef EventData =
+{
+ /**
+ * The time that this event gets played on.
+ */
+ var time:Float;
+
+ /**
+ * The name of the event to play.
+ */
+ var name:String;
+
+ /**
+ * The arguments for the event. (If it requires it)
+ *
+ * An example of a Hey! argument
+ * ```json
+ * "args": {"heyTimer": 1}
+ * ```
+ */
+ @:default([])
+ var args:Map;
+}
+
+typedef BPMChangeData =
+{
+ /**
+ * The new bpm when this change is hit.
+ */
+ var bpm:Float;
+
+ /**
+ * The time that this bpm change gets played on.
+ */
+ var time:Float;
+
+ /**
+ * The time signature to change to.
+ * @param numerator How many beats are in a measure.
+ * @param denominator How many steps are in a beat (i think)
+ */
+ @:default({numerator: 4, denominator: 4})
+ var timeSignature:{numerator:Float, denominator:Float}; // making it float cuz some person is gonna complain. I WILL BLOW YOUR HOSUE UP BITHC FUCK YOU
+
+ /**
+ * The time in beats. This is used internally to calculate beats after the change.
+ */
+ @:optional
+ @:default(0)
+ var beatTime:Float;
+}
+
+typedef NoteData =
+{
+ /**
+ * The time the note will be hit.
+ */
+ var time:Float;
+
+ /**
+ * The direction that the note is facing.
+ */
+ var direction:Int;
+
+ /**
+ * The Type of the Note.
+ */
+ @:default('')
+ var type:String;
+
+ /**
+ * The strum that the note shows up on.
+ */
+ var strum:String;
+
+ /**
+ * The *sus*tain length of the note.
+ * @see https://www.innersloth.com/games/among-us/
+ */
+ @:optional
+ var length:Float;
+}
+
+typedef SongCredits =
+{
+ /**
+ * The person that composed this song.
+ */
+ @:default('Unknown')
+ var composer:String;
+
+ /**
+ * The person that charted this song.
+ */
+ @:default('Unknown')
+ var charter:String;
+}
+
+typedef VSliceChartStructure =
+{
+ public var scrollSpeed:Map;
+ public var events:Array;
+ public var notes:Map>;
+
+ public var version:String;
+ public var generatedBy:String;
+}
+
+typedef VSliceNoteStructure =
+{
+ /**
+ * The timestamp of the note. The timestamp is in the format of the song's time format.
+ */
+ @:alias("t")
+ public var time:Float;
+
+ /**
+ * Data for the note. Represents the index on the strumline.
+ * 0 = left, 1 = down, 2 = up, 3 = right
+ * `floor(direction / strumlineSize)` specifies which strumline the note is on.
+ * 0 = player, 1 = opponent, etc.
+ */
+ @:alias("d")
+ public var data:Int;
+
+ /**
+ * Length of the note, if applicable.
+ * Defaults to 0 for single notes.
+ */
+ @:alias("l")
+ @:default(0)
+ @:optional
+ public var length:Float;
+
+ /**
+ * The kind of the note.
+ * This can allow the note to include information used for custom behavior.
+ * Defaults to `null` for no kind.
+ */
+ @:alias("k")
+ @:optional
+ @:isVar
+ public var kind:Null;
+}
+
+class VSliceEventStructure
+{
+ /**
+ * The timestamp of the event. The timestamp is in the format of the song's time format.
+ */
+ @:alias("t")
+ public var time:Float;
+
+ /**
+ * The kind of the event.
+ * Examples include "FocusCamera" and "PlayAnimation"
+ * Custom events can be added by scripts with the `ScriptedSongEvent` class.
+ */
+ @:alias("e")
+ public var eventKind:String;
+
+ /**
+ * The data for the event.
+ * This can allow the event to include information used for custom behavior.
+ * Data type depends on the event kind. It can be anything that's JSON serializable.
+ */
+ @:alias("v")
+ @:optional
+ @:jcustomparse(ConvertChart.dynamicValueParse)
+ @:jcustomwrite(ConvertChart.dynamicValueWrite)
+ public var value:Dynamic;
+}
+
+typedef VSliceMetadataStructure =
+{
+ @:default("Unknown")
+ var songName:String;
+ @:default("Unknown")
+ var artist:String;
+ @:optional
+ var charter:Null;
+ @:optional
+ @:default(96)
+ var divisions:Null; // Optional field
+ @:optional
+ @:default(false)
+ var looped:Bool;
+
+ /**
+ * Data relating to the song's gameplay.
+ */
+ var playData:
+ {
+ /**
+ * The variations this song has. The associated metadata files should exist.
+ */
+ @:default([])
+ @:optional
+ public var songVariations:Array;
+ /**
+ * The difficulties contained in this song's chart file.
+ */
+ public var difficulties:Array;
+ /**
+ * The characters used by this song.
+ */
+ public var characters:
+ {
+ @:optional
+ @:default('')
+ public var player:String;
+ @:optional
+ @:default('')
+ public var girlfriend:String;
+ @:optional
+ @:default('')
+ public var opponent:String;
+ @:optional
+ @:default('')
+ public var instrumental:String;
+ @:optional
+ @:default([])
+ public var altInstrumentals:Array;
+ };
+ /**
+ * The stage used by this song.
+ */
+ public var stage:String;
+ /**
+ * The note style used by this song.
+ */
+ public var noteStyle:String;
+ /**
+ * The difficulty ratings for this song as displayed in Freeplay.
+ * Key is a difficulty ID.
+ */
+ @:optional
+ @:default(['normal' => 0])
+ public var ratings:Map;
+ /**
+ * The album ID for the album to display in Freeplay.
+ * If `null`, display no album.
+ */
+ @:optional
+ public var album:Null;
+ /**
+ * The start time for the audio preview in Freeplay.
+ * Defaults to 0 seconds in.
+ * @since `2.2.2`
+ */
+ @:optional
+ @:default(0)
+ public var previewStart:Int;
+ /**
+ * The end time for the audio preview in Freeplay.
+ * Defaults to 15 seconds in.
+ * @since `2.2.2`
+ */
+ @:optional
+ @:default(15000)
+ public var previewEnd:Int;
+ };
+
+ /**
+ * Data relating to the song's gameplay.
+ */
+ var timeChanges:Array<
+ {
+ /**
+ * Timestamp in specified `timeFormat`.
+ */
+ @:alias("t")
+ public var timeStamp:Float;
+ /**
+ * Time in beats (int). The game will calculate further beat values based on this one,
+ * so it can do it in a simple linear fashion.
+ */
+ @:optional
+ @:alias("b")
+ public var beatTime:Float;
+ /**
+ * Quarter notes per minute (float). Cannot be empty in the first element of the list,
+ * but otherwise it's optional, and defaults to the value of the previous element.
+ */
+ @:alias("bpm")
+ public var bpm:Float;
+ /**
+ * Time signature numerator (int). Optional, defaults to 4.
+ */
+ @:default(4)
+ @:optional
+ @:alias("n")
+ public var timeSignatureNum:Int;
+ /**
+ * Time signature denominator (int). Optional, defaults to 4. Should only ever be a power of two.
+ */
+ @:default(4)
+ @:optional
+ @:alias("d")
+ public var timeSignatureDen:Int;
+ /**
+ * Beat tuplets (Array or int). This defines how many steps each beat is divided into.
+ * It can either be an array of length `n` (see above) or a single integer number.
+ * Optional, defaults to `[4]`.
+ */
+ @:optional
+ @:alias("bt")
+ public var beatTuplets:Array;
+ }>;
+}
diff --git a/extras/scripts/convert chart/convertChartDirectory.bat b/extras/scripts/convert chart/convertChartDirectory.bat
new file mode 100644
index 0000000..59828be
--- /dev/null
+++ b/extras/scripts/convert chart/convertChartDirectory.bat
@@ -0,0 +1,11 @@
+@echo off
+echo Converting all legacy charts to TechNotDrip charts...
+setlocal
+set "CHART_PATH=.\old charts"
+set "CONVERTED_CHART_PATH=.\converted charts"
+for /D %%d in ("%CHART_PATH%\*") do (
+ echo Converting %%~nxd
+ haxe --main ConvertChart --library json2object --run ConvertChart %%d %CONVERTED_CHART_PATH%\%%~nxd
+)
+endlocal
+echo Converting all legacy charts to TechNotDrip charts!
\ No newline at end of file
diff --git a/extras/scripts/cropSparrow.py b/extras/scripts/cropSparrow.py
new file mode 100644
index 0000000..620e6c0
--- /dev/null
+++ b/extras/scripts/cropSparrow.py
@@ -0,0 +1,25 @@
+import os
+from xml.dom import minidom
+from PIL import Image
+
+for (dirpath, dirnames, filenames) in os.walk('../../assets'):
+ for file in filenames:
+ if file.endswith(".xml") and os.path.isfile(dirpath + '/' + file[:-3] + 'png'):
+ print('Converting ' + dirpath + '/' + file[:-4])
+
+ xmlParse = minidom.parse(dirpath + '/' + file)
+
+ highestWidth = 0
+ highestHeight = 0
+ for elem in xmlParse.getElementsByTagName('SubTexture'):
+ width = int(elem.attributes['x'].value) + int(elem.attributes['width'].value)
+ height = int(elem.attributes['y'].value) + int(elem.attributes['height'].value)
+
+ if width > highestWidth:
+ highestWidth = width
+ if height > highestHeight:
+ highestHeight = height
+
+ image = Image.open(dirpath + '/' + file[:-3] + 'png')
+ image = image.crop((0, 0, highestWidth, highestHeight))
+ image.save(dirpath + '/' + file[:-3] + 'png')
\ No newline at end of file
diff --git a/extras/scripts/dox.bat b/extras/scripts/dox.bat
new file mode 100644
index 0000000..2d5b905
--- /dev/null
+++ b/extras/scripts/dox.bat
@@ -0,0 +1,6 @@
+::This script is used to create the dox pages, this means you must get the game to compile the xml first. (Set DOX_GENERATION to true in Project.hxp)
+@echo off
+cd ../../
+cd docs/dox
+@echo on
+haxelib run dox -i ./
\ No newline at end of file
diff --git a/extras/scripts/oggToMp3.bat b/extras/scripts/oggToMp3.bat
new file mode 100644
index 0000000..e44af76
--- /dev/null
+++ b/extras/scripts/oggToMp3.bat
@@ -0,0 +1,10 @@
+@echo off
+echo Converting all OGG's to MP3's...
+setlocal
+set "ASSETS_PATH=..\..\assets"
+for /r "%ASSETS_PATH%" %%F in (*.ogg) do (
+ echo Converting %%F
+ ffmpeg -hide_banner -loglevel error -y -i "%%F" "%%~dpnF.mp3"
+)
+endlocal
+echo Converted all OGG's to MP3's!
\ No newline at end of file
diff --git a/extras/scripts/optimizeImages.bat b/extras/scripts/optimizeImages.bat
new file mode 100644
index 0000000..5210e36
--- /dev/null
+++ b/extras/scripts/optimizeImages.bat
@@ -0,0 +1,3 @@
+py cropSparrow.py
+cd ../../assets
+oxipng -o 6 --strip safe --alpha -r ./
\ No newline at end of file
diff --git a/hxformat.json b/hxformat.json
index 66cb386..b6aca5e 100644
--- a/hxformat.json
+++ b/hxformat.json
@@ -12,4 +12,4 @@
"tryBody": "next",
"tryCatch": "next"
}
-}
+}
\ No newline at end of file
diff --git a/setup/setup.bat b/setup/setup.bat
new file mode 100644
index 0000000..18ca6ea
--- /dev/null
+++ b/setup/setup.bat
@@ -0,0 +1,5 @@
+cd ..
+haxelib --global install hxpkg
+haxelib --global run hxpkg setup
+hxpkg install --force
+pause
\ No newline at end of file
diff --git a/setup/setup.sh b/setup/setup.sh
new file mode 100644
index 0000000..3dc7548
--- /dev/null
+++ b/setup/setup.sh
@@ -0,0 +1,5 @@
+cd ..
+haxelib --global install hxpkg
+haxelib --global run hxpkg setup
+hxpkg install --force
+read -n 1 -p -s "Press any key to continue..."
\ No newline at end of file
diff --git a/src/Main.hx b/src/Main.hx
index 2a3d60c..598f199 100644
--- a/src/Main.hx
+++ b/src/Main.hx
@@ -2,18 +2,30 @@ package;
import flixel.FlxG;
import flixel.FlxGame;
+import flixel.FlxSprite;
import flixel.util.typeLimit.NextState;
+import funkin.data.save.Save;
+import funkin.objects.ui.PerformanceStats;
import funkin.states.ui.TitleState;
-import openfl.Assets;
+import lime.utils.Assets as LimeAssets;
import openfl.display.Sprite;
+import openfl.utils.Assets as OpenFlAssets;
+#if FUNKIN_DISCORD_RPC
+import funkin.api.DiscordRPC;
+#end
class Main extends Sprite
{
- var flxGameData:FlxGameInit = {
+ /**
+ * The FPS and Memory overlay at the top left of the screen.
+ */
+ public static var performanceStats:PerformanceStats;
+
+ final flxGameData:FlxGameInit = {
width: 1280,
height: 720,
initState: TitleState.new,
- framerate: 144,
+ framerate: 60,
showSplash: false,
startFullscreen: false
};
@@ -31,10 +43,39 @@ class Main extends Sprite
!flxGameData.showSplash, flxGameData.startFullscreen);
addChild(flxGame);
- Assets.cache.enabled = false;
+ performanceStats = new PerformanceStats();
+ addChild(performanceStats);
+
+ OpenFlAssets.cache.enabled = false;
+ LimeAssets.cache.enabled = false;
+ #if FLX_MOUSE
FlxG.mouse.useSystemCursor = true;
FlxG.mouse.visible = false;
+ #end
+
+ FlxG.fixedTimestep = false;
+
+ FlxSprite.defaultAntialiasing = true;
+
+ Save.instance.setOptionValues();
+
+ #if FUNKIN_DISCORD_RPC
+ DiscordRPC.loadDiscordConfig();
+ DiscordRPC.initialize();
+ DiscordRPC.largeImageText = 'Version: ' + Constants.TECHNOTDRIP_VERSION;
+ #end
+
+ stage.window.onClose.add(closeWindow);
+ }
+
+ /**
+ * Called when the game gets closed.
+ */
+ public function closeWindow():Void
+ {
+ trace('Bye Bye!');
+ Save.instance.flush();
}
}
diff --git a/src/funkin/Conductor.hx b/src/funkin/Conductor.hx
index 5613e9f..95f9b7c 100644
--- a/src/funkin/Conductor.hx
+++ b/src/funkin/Conductor.hx
@@ -1,12 +1,19 @@
package funkin;
-import flixel.util.FlxDestroyUtil.IFlxDestroyable;
+import flixel.util.FlxDestroyUtil;
import flixel.util.FlxSignal;
+import flixel.util.FlxSort;
+import funkin.structures.SongStructure.BPMChangeData;
/*
CONDUCTOR TODO:
* Add time changes, so most things arent hardcoded
*/
+//
+
+/**
+ * The conductor is an class that handles most of the music timing.
+ */
class Conductor implements IFlxDestroyable
{
/**
@@ -40,58 +47,49 @@ class Conductor implements IFlxDestroyable
public var curSection:Int;
/**
- * Timestamp of the music that the conductor will follow.
- * Should be in miliseconds.
+ * The current step, but in decimal form.
*/
- public var time(default, set):Float;
+ public var curStepDecimal:Float;
/**
- * The bpm of the music that the conductor will follow.
- * TODO: tie this to a time change instead.
+ * The current beat, but in decimal form.
*/
- public var bpm:Float;
+ public var curBeatDecimal:Float;
/**
- * How many steps in a beat there are.
- * TODO: tie this to a time change.
+ * The current section, but in decimal form.
*/
- public var beatSteps:Int = 4;
+ public var curSectionDecimal:Float;
/**
- * How many beats in a section there are.
- * TODO: tie this to a time change.
+ * Timestamp of the music that the conductor will follow.
+ * Should be in miliseconds.
+ */
+ public var time(default, set):Float;
+
+ /**
+ * The bpm of the music that the conductor will follow.
+ * Use changeBPM to set it!
*/
- public var sectionBeats:Int = 4;
+ public var bpm(get, null):Float;
/**
* The length between a beat, in miliseconds.
*/
public var crochet(get, null):Float;
- function get_crochet():Float
- {
- return calculateCrochet(bpm);
- }
-
/**
* The length between a step, in miliseconds.
*/
public var stepCrochet(get, null):Float;
- function get_stepCrochet():Float
- {
- return crochet / beatSteps;
- }
-
/**
* The length between a section, in miliseconds.
*/
public var sectionCrochet(get, null):Float;
- function get_sectionCrochet():Float
- {
- return crochet * sectionBeats;
- }
+ var bpmChanges:Array;
+ var bpmChangesLeft:Array;
public function new()
{
@@ -99,21 +97,159 @@ class Conductor implements IFlxDestroyable
beatHit = new FlxSignal();
sectionHit = new FlxSignal();
- bpm = 100;
+ setupBPMChanges([
+ {
+ time: 0,
+ bpm: 100,
+ timeSignature: {
+ numerator: 4,
+ denominator: 4
+ }
+ }
+ ]);
+
+ // doing it here because time isnt initialized yet
+ bpmChangesLeft = bpmChanges.copy();
+
time = 0;
}
- function set_time(value:Float):Float
+ /**
+ * Changes the bpm, along with a few other changes.
+ * @param bpm The bpm to change it to.
+ * @param timeSignature Optional time signature to change it to.
+ * @param recalculate If disabled, it will act as a normal bpm change.
+ */
+ public function changeBPM(bpm:Float, ?timeSignature:{numerator:Float, denominator:Float} = null, ?recalculate:Bool = true):Void
{
- time = value;
+ if (timeSignature == null)
+ timeSignature = {numerator: 4, denominator: 4};
+
+ var bpmChangeToAdd:BPMChangeData = {
+ time: time,
+ bpm: bpm,
+ timeSignature: timeSignature,
+ beatTime: 0
+ };
+
+ if (recalculate)
+ bpmChangeToAdd.beatTime = time / calculateCrochet(bpm);
+
+ if (bpmChangesLeft[0].time == time)
+ {
+ var oldBPMChange:BPMChangeData = bpmChangesLeft.shift();
+ bpmChanges.remove(oldBPMChange);
+ }
+
+ bpmChanges.push(bpmChangeToAdd);
+
+ bpmChanges.sort((a:BPMChangeData, b:BPMChangeData) ->
+ {
+ return FlxSort.byValues(FlxSort.ASCENDING, a.time, b.time);
+ });
+
+ recalculateBPMChangeCache();
+ }
+
+ /**
+ * Fully resets BPM Changes.
+ */
+ public function resetBPMChanges():Void
+ {
+ var currentBPM:Float = bpmChangesLeft[0].bpm;
+ var currentTimeSignature:{numerator:Float, denominator:Float} = bpmChangesLeft[0].timeSignature;
+ setupBPMChanges([
+ {
+ bpm: currentBPM,
+ time: 0,
+ timeSignature: currentTimeSignature
+ }
+ ]);
+ }
+
+ /**
+ * Updates the current conductor time.
+ * @param songTime The time to set it to. If not specified the FlxG.sound.music time will be used instead.
+ */
+ public function update(?songTime:Float):Void
+ {
+ if (songTime != null)
+ {
+ time = songTime;
+ }
+ else
+ {
+ time = FlxG.sound.music.time ?? 0.0;
+ }
+ }
+
+ /**
+ * Sets up the bpm changes for use.
+ * @param bpmChangeArray The BPM Changes to set up.
+ */
+ public function setupBPMChanges(bpmChangeArray:Array)
+ {
+ bpmChanges = bpmChangeArray;
+
+ bpmChanges.sort((a:BPMChangeData, b:BPMChangeData) ->
+ {
+ return FlxSort.byValues(FlxSort.ASCENDING, a.time, b.time);
+ });
+
+ // haxe 4.3 syntax my goat
+ for (bpmChange in bpmChanges)
+ bpmChange.beatTime ??= 0;
+
+ recalculateBPMChangeCache();
+ }
+ /**
+ * Cleans up this Conductor to the best of our abilities.
+ */
+ public function destroy():Void
+ {
+ stepHit.destroy();
+ beatHit.destroy();
+ sectionHit.destroy();
+ }
+
+ function set_time(value:Float):Float
+ {
+ var oldTime:Float = time;
var oldStep:Int = curStep;
var oldBeat:Int = curBeat;
var oldSection:Int = curSection;
- curStep = Math.floor(time / stepCrochet);
- curBeat = Math.floor(time / crochet);
- curSection = Math.floor(time / sectionCrochet);
+ time = value;
+
+ // in case we went back for some reason
+ if (oldTime > time)
+ recalculateBPMChangeCache();
+
+ if (bpmChangesLeft[1] != null && time >= bpmChangesLeft[1].time)
+ {
+ bpmChangesLeft.shift();
+
+ FlxG.log.notice('New BPM Change!');
+
+ if (bpmChangesLeft[0].beatTime == 0)
+ bpmChangesLeft[0].beatTime = curBeatDecimal;
+ }
+
+ curBeatDecimal = bpmChangesLeft[0].beatTime + ((time - bpmChangesLeft[0].time) / crochet);
+ curStepDecimal = curBeatDecimal * bpmChangesLeft[0].timeSignature.denominator;
+ curSectionDecimal = curBeatDecimal / bpmChangesLeft[0].timeSignature.numerator;
+
+ curStep = Math.floor(curStepDecimal);
+ curBeat = Math.floor(curBeatDecimal);
+ curSection = Math.floor(curSectionDecimal);
+
+ #if FLX_DEBUG
+ FlxG.watch.addQuick('curStep', curStep);
+ FlxG.watch.addQuick('curBeat', curBeat);
+ FlxG.watch.addQuick('curSection', curSection);
+ FlxG.watch.addQuick('BPM', bpmChangesLeft[0].bpm);
+ #end
if (oldStep != curStep)
stepHit.dispatch();
@@ -127,14 +263,40 @@ class Conductor implements IFlxDestroyable
return value;
}
+ function get_crochet():Float
+ {
+ return calculateCrochet(bpm);
+ }
+
+ function get_stepCrochet():Float
+ {
+ return bpmChangesLeft[0].timeSignature.denominator;
+ }
+
+ function get_sectionCrochet():Float
+ {
+ return crochet * bpmChangesLeft[0].timeSignature.numerator;
+ }
+
+ function get_bpm():Float
+ {
+ return bpmChangesLeft[0].bpm;
+ }
+
/**
- * Cleans up this Conductor to the best of our abilities.
+ * Resets the BPM Change cache.
*/
- public function destroy():Void
+ public function recalculateBPMChangeCache():Void
{
- stepHit.destroy();
- beatHit.destroy();
- sectionHit.destroy();
+ bpmChangesLeft = bpmChanges.copy();
+
+ while (true)
+ {
+ if (bpmChangesLeft[1] != null && time >= bpmChangesLeft[1].time)
+ bpmChangesLeft.shift();
+ else
+ break;
+ }
}
/**
@@ -142,7 +304,7 @@ class Conductor implements IFlxDestroyable
* @param bpm The bpm to use for calculating.
* @return The crochet, in miliseconds.
*/
- public static function calculateCrochet(bpm:Float):Float
+ static inline function calculateCrochet(bpm:Float):Float
{
return ((60 / bpm) * 1000);
}
diff --git a/src/funkin/Constants.hx b/src/funkin/Constants.hx
new file mode 100644
index 0000000..5c8a670
--- /dev/null
+++ b/src/funkin/Constants.hx
@@ -0,0 +1,81 @@
+package funkin;
+
+import funkin.macros.GitDefines;
+
+class Constants
+{
+ /**
+ * The version of TechNotDrip Engine.
+ */
+ public static var TECHNOTDRIP_VERSION(get, never):String;
+
+ /**
+ * The version of Friday Night Funkin' that TechNotDrip Engine is based off of.
+ */
+ public static final FNF_VERSION:String = '0.7.4';
+
+ /**
+ * The current Git Commit Hash.
+ */
+ public static final GIT_HASH:String = GitDefines.gitCommitHash();
+
+ /**
+ * The current Git Commit Hash but shortened.
+ */
+ public static final GIT_HASH_SPLICED:String = GitDefines.gitCommitHash().substr(0, 7);
+
+ /**
+ * The current Git Branch.
+ */
+ public static final GIT_BRANCH:String = GitDefines.gitBranch();
+
+ /**
+ * If there is local changes to the git branch.
+ */
+ public static final GIT_MODIFIED:Bool = GitDefines.gitModified();
+
+ /**
+ * Default Difficulties
+ */
+ public static final DEFAULT_DIFFICULTIES:Array = ['easy', 'normal', 'hard', 'erect', 'nightmare'];
+
+ /**
+ * Default Difficulty
+ */
+ public static final DEFAULT_DIFFICULTY:String = 'normal';
+
+ /**
+ * How much space difficulties in Story Mode can have until they are sized down.
+ */
+ public static final DIFFICULTY_SPACING:Float = 320;
+
+ /**
+ * The value that the players health can be maxed out to in PlayState.
+ */
+ public static final HEALTH_MAXIMUM:Float = 2.0;
+
+ /**
+ * The value that the players health starts out at in PlayState.
+ */
+ public static final HEALTH_DEFAULT:Float = 1.0;
+
+ /**
+ * The value that the player can go down to before they die in PlayState.
+ */
+ public static final HEALTH_MINIMUM:Float = 0.0;
+
+ /**
+ * A magic number used when calculating scroll speed and note distances.
+ */
+ public static final PIXELS_PER_MS:Float = 0.45;
+
+ /**
+ * The vertical offset of the strumline from the top edge of the screen.
+ */
+ public static final STRUMLINE_Y_OFFSET:Float = 50;
+
+ static function get_TECHNOTDRIP_VERSION():String
+ {
+ return FlxG.stage.application.meta.get('version');
+ }
+}
diff --git a/src/funkin/api/DiscordRPC.hx b/src/funkin/api/DiscordRPC.hx
new file mode 100644
index 0000000..c92b6b1
--- /dev/null
+++ b/src/funkin/api/DiscordRPC.hx
@@ -0,0 +1,416 @@
+package funkin.api;
+
+#if FUNKIN_DISCORD_RPC
+import funkin.structures.DiscordStructure;
+import haxe.Json;
+import hxdiscord_rpc.Discord;
+import hxdiscord_rpc.Types;
+import sys.thread.Thread;
+
+/**
+ * The Discord RPC handler for TechNotDrip Engine.
+ *
+ * This contains quick functions like booting up the rpc.
+ *
+ * This also has variables that update the RPC when changed.
+ */
+class DiscordRPC
+{
+ /**
+ * Your application's Client ID.
+ * This determines what people actually see on Discord!
+ *
+ * You need to run `restart()` first for this to take effect!
+ *
+ *
+ * Example:
+ * ```haxe
+ * "1323401168705163355"
+ * "1209233449928360036"
+ * "1116504588963545230"
+ * ```
+ */
+ public static var clientID:String = "1323401168705163355";
+
+ /**
+ * The user's current party status.
+ *
+ * Example:
+ * ```haxe
+ * "Looking to Play"
+ * "Playing Solo"
+ * "In a Group"
+ * ```
+ */
+ public static var state(default, set):String;
+
+ /**
+ * What the player is currently doing.
+ *
+ * Example:
+ * ```haxe
+ * "Competitive - Captain's Mode"
+ * "In Queue"
+ * "Unranked PvP"
+ * ```
+ */
+ public static var details(default, set):String;
+
+ /**
+ * epoch seconds for game start - including will show time as "elapsed".
+ *
+ * Sending `startTimestamp` will show "elapsed" as long as there is no `endTimestamp` sent.
+ *
+ * Example:
+ * ```haxe
+ * 1507665886
+ * ```
+ */
+ public static var startTimestamp(default, set):Float;
+
+ /**
+ * epoch seconds for game end - including will show time as "remaining"
+ *
+ * Sending `endTimestamp` will **always** have the time displayed as "remaining" until the given time.
+ *
+ * Example:
+ * ```haxe
+ * 1507665886
+ * ```
+ */
+ public static var endTimestamp(default, set):Float;
+
+ /**
+ * Name of the uploaded image for the large profile artwork.
+ *
+ * Example:
+ * ```haxe
+ * "default"
+ * ```
+ */
+ public static var largeImageKey(default, set):String;
+
+ /**
+ * Tooltip for the largeImageKey.
+ *
+ * Example:
+ * ```haxe
+ * "Blade's Edge Arena"
+ * "Numbani"
+ * "Danger Zone"
+ * ```
+ */
+ public static var largeImageText(default, set):String;
+
+ /**
+ * Name of the uploaded image for the small profile artwork.
+ *
+ * Example:
+ * ```haxe
+ * "rogue"
+ * ```
+ */
+ public static var smallImageKey(default, set):String;
+
+ /**
+ * Tooltip for the smallImageKey.
+ *
+ * Example:
+ * ```haxe
+ * "Rogue - Level 100"
+ * ```
+ */
+ public static var smallImageText(default, set):String;
+
+ /**
+ * ID of the player's party, lobby, or group.
+ *
+ * Example:
+ * ```haxe
+ * "ae488379-351d-4a4f-ad32-2b9b01c91657"
+ * ```
+ */
+ public static var partyId(default, set):String;
+
+ /**
+ * Current size of the player's party, lobby, or group.
+ *
+ * Example:
+ * ```haxe
+ * 1
+ * ```
+ */
+ public static var partySize(default, set):Int;
+
+ /**
+ * Maximum size of the player's party, lobby, or group.
+ *
+ * Example:
+ * ```haxe
+ * 5
+ * ```
+ */
+ public static var partyMax(default, set):Int;
+
+ /**
+ * No documentation was given on this.
+ */
+ public static var partyPrivacy(default, set):Int;
+
+ /**
+ * Unique hashed string for a player's match.
+ *
+ * Example:
+ * ```haxe
+ * "MmhuZToxMjMxMjM6cWl3amR3MWlqZA=="
+ * ```
+ */
+ public static var matchSecret(default, set):String;
+
+ /**
+ * Unique hashed string for Spectate button.
+ *
+ * Example:
+ * ```haxe
+ * "MTIzNDV8MTIzNDV8MTMyNDU0"
+ * ```
+ */
+ public static var spectateSecret(default, set):String;
+
+ /**
+ * Unique hashed string for chat invitations and Ask to Join.
+ *
+ * Example:
+ * ```haxe
+ * "MTI4NzM0OjFpMmhuZToxMjMxMjM="
+ * ```
+ */
+ public static var joinSecret(default, set):String;
+
+ static var presence:DiscordRichPresence = DiscordRichPresence.create();
+ static var updateThread:Thread;
+
+ /**
+ * Initializes and boots up the Discord RPC.
+ */
+ public static function initialize():Void
+ {
+ var handlers:DiscordEventHandlers = DiscordEventHandlers.create();
+ handlers.ready = cpp.Function.fromStaticFunction(onReady);
+ handlers.disconnected = cpp.Function.fromStaticFunction(onDisconnected);
+ handlers.errored = cpp.Function.fromStaticFunction(onError);
+ Discord.Initialize(clientID, cpp.RawPointer.addressOf(handlers), 1, null);
+
+ updateThread = Thread.create(function()
+ {
+ while (true)
+ {
+ #if DISCORD_DISABLE_IO_THREAD
+ Discord.UpdateConnection();
+ #end
+ Discord.RunCallbacks();
+
+ Sys.sleep(2);
+ }
+ });
+ }
+
+ /**
+ * Restarts the Discord RPC by shutting it down and re-initializing it again.
+ */
+ public static function restart():Void
+ {
+ shutdown();
+ initialize();
+ }
+
+ /**
+ * Shuts down the Discord RPC.
+ */
+ public static function shutdown():Void
+ {
+ Discord.Shutdown();
+ updateThread = null;
+ }
+
+ /**
+ * Loads the discord configuration file located in assets/config/discord.json, and applies it to the Discord RPC.
+ */
+ public static function loadDiscordConfig():Void
+ {
+ var discordConfig:DiscordStructure = cast Json.parse(Paths.content.json('config/discord'));
+
+ clientID = discordConfig.id;
+ largeImageKey = discordConfig.iconKey;
+ }
+
+ /**
+ * Resets all the values back to either null or 0 (if it's a number type.)
+ * @param alsoClearConfig Should the config values also be cleared?
+ */
+ public static function clearValues(?alsoClearConfig:Bool = false):Void
+ {
+ state = null;
+ details = null;
+
+ startTimestamp = 0;
+ endTimestamp = 0;
+
+ if (alsoClearConfig)
+ {
+ largeImageKey = null;
+ largeImageText = null;
+ }
+
+ smallImageKey = null;
+ smallImageText = null;
+
+ partyId = null;
+ partySize = 0;
+ partyMax = 0;
+ partyPrivacy = 0;
+
+ matchSecret = null;
+ joinSecret = null;
+ spectateSecret = null;
+ }
+
+ /**
+ * Updates the presence on the user's Discord profile.
+ */
+ public static function updatePresence():Void
+ {
+ // TODO: updatePresence function for modding api so you can change outcome of whats displayed
+ Discord.UpdatePresence(cpp.RawConstPointer.addressOf(presence));
+ }
+
+ // Handlers
+ static function onReady(request:cpp.RawConstPointer):Void
+ {
+ var displayDiscrim:String = '';
+
+ if (Std.parseInt(cast(request[0].discriminator, String)) != 0)
+ displayDiscrim += '#' + request[0].discriminator;
+
+ updatePresence();
+
+ trace('[INFO] Discord RPC Successfully connected! Connected to ${request[0].globalName} (${request[0].username}$displayDiscrim)');
+ }
+
+ static function onDisconnected(errorCode:Int, message:cpp.ConstCharStar):Void
+ {
+ trace('[INFO] Discord RPC Disconnected! $message ($errorCode)');
+ }
+
+ static function onError(errorCode:Int, message:cpp.ConstCharStar):Void
+ {
+ trace('[ERROR] Discord RPC Error! $message ($errorCode)');
+ }
+
+ // Setting Discord RPC Variables
+ static function set_state(value:String):String
+ {
+ presence.state = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_details(value:String):String
+ {
+ presence.details = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_startTimestamp(value:Float):Float
+ {
+ presence.startTimestamp = Std.int(value / 1000);
+ updatePresence();
+ return value;
+ }
+
+ static function set_endTimestamp(value:Float):Float
+ {
+ presence.endTimestamp = Std.int(value / 1000);
+ updatePresence();
+ return value;
+ }
+
+ static function set_largeImageKey(value:String):String
+ {
+ presence.largeImageKey = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_largeImageText(value:String):String
+ {
+ presence.largeImageText = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_smallImageKey(value:String):String
+ {
+ presence.smallImageKey = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_smallImageText(value:String):String
+ {
+ presence.smallImageText = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_partyId(value:String):String
+ {
+ presence.partyId = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_partySize(value:Int):Int
+ {
+ presence.partySize = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_partyMax(value:Int):Int
+ {
+ presence.partyMax = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_partyPrivacy(value:Int):Int
+ {
+ presence.partyPrivacy = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_matchSecret(value:String):String
+ {
+ presence.matchSecret = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_joinSecret(value:String):String
+ {
+ presence.joinSecret = value;
+ updatePresence();
+ return value;
+ }
+
+ static function set_spectateSecret(value:String):String
+ {
+ presence.spectateSecret = value;
+ updatePresence();
+ return value;
+ }
+}
+#end
diff --git a/src/funkin/data/save/Save.hx b/src/funkin/data/save/Save.hx
new file mode 100644
index 0000000..fb2dfa0
--- /dev/null
+++ b/src/funkin/data/save/Save.hx
@@ -0,0 +1,243 @@
+package funkin.data.save;
+
+import flixel.util.FlxSave;
+import funkin.structures.SaveStructure;
+import funkin.util.FunkinControls;
+
+class Save
+{
+ /**
+ * The path of which saves are loaded from. Usually the company name.
+ */
+ public static final SAVE_PATH:String = 'TilNotDrip';
+
+ /**
+ * The name of which saves are loaded from. Usually the name of the application.
+ */
+ public static final SAVE_NAME:String = 'TechNotDrip';
+
+ /**
+ * The current version of save file.
+ */
+ public static final SAVE_VERSION:Version = '1.1.0';
+
+ /**
+ * The version rule for save files, means that they are compatible with this version.
+ */
+ public static final SAVE_VERSION_RULE:VersionRule = '1.x';
+
+ /**
+ * The latest instance of this class.
+ */
+ public static var instance(get, never):Save;
+
+ static var _instance:Null = null;
+
+ /**
+ * The recently loaded save data.
+ */
+ public var data:SaveStructure = null;
+
+ public function new(?data:SaveStructure)
+ {
+ if (data == null)
+ {
+ this.data = getDefault();
+ }
+ else
+ {
+ this.data = data;
+ }
+
+ #if FLX_DEBUG
+ registerConsoleFunctions();
+ #end
+ }
+
+ function registerConsoleFunctions():Void
+ {
+ FlxG.console.registerFunction("setControlByName", function(name:String, keyboard:Array, ?gamepad:Array)
+ {
+ var controlValue:Null<{keyboard:Array, gamepad:Array}> = getControls().get(name);
+
+ if (keyboard != null)
+ controlValue.keyboard = keyboard;
+
+ if (gamepad != null)
+ controlValue.gamepad = gamepad;
+
+ getControls().set(name, controlValue);
+ flush();
+ });
+ }
+
+ /**
+ * Gets the Saved Controls.
+ * @return The Controls.
+ */
+ public function getControls():ControlMappings
+ {
+ var controls:ControlMappings = data.controls;
+
+ if (controls == null)
+ {
+ controls = getDefault().controls;
+ flush();
+ }
+
+ return controls;
+ }
+
+ /**
+ * Options for the game
+ */
+ public var options(get, set):OptionStructure;
+
+ function set_options(value:OptionStructure):OptionStructure
+ {
+ data.options = value;
+ flush();
+ return data.options;
+ }
+
+ function get_options():OptionStructure
+ {
+ return data.options;
+ }
+
+ /**
+ * idk what to put here
+ */
+ public function setOptionValues():Void
+ {
+ if (options.fps > FlxG.drawFramerate)
+ {
+ FlxG.updateFramerate = options.fps;
+ FlxG.drawFramerate = options.fps;
+ }
+ else
+ {
+ FlxG.drawFramerate = options.fps;
+ FlxG.updateFramerate = options.fps;
+ }
+
+ if (Main.performanceStats != null)
+ Main.performanceStats.visible = options.showFps;
+
+ FlxG.fullscreen = options.fullscreen;
+
+ FlxSprite.defaultAntialiasing = options.antialiasing;
+
+ FlxG.autoPause = options.autoPause;
+
+ #if FLX_MOUSE
+ FlxG.mouse.useSystemCursor = options.systemCursor;
+ #end
+ }
+
+ /**
+ * Flushes the save data.
+ */
+ public function flush():Void
+ {
+ data.volume = FlxG.sound.volume;
+ data.mute = FlxG.sound.muted;
+
+ FlxG.save.mergeData(data, true);
+ }
+
+ /**
+ * @return Returns the default save options
+ */
+ public static function getDefault():SaveStructure
+ {
+ return {
+ version: SAVE_VERSION,
+
+ volume: 1.0,
+ mute: false,
+
+ progress: {
+ storyMode: new Map(),
+ highscores: {
+ storyMode: new Map(),
+ freeplay: new Map(),
+ }
+ },
+
+ options: {
+ // Graphics
+ fps: 60,
+ showFps: true,
+ fullscreen: false,
+ antialiasing: true,
+ flashingLights: true,
+ autoPause: true,
+ systemCursor: false,
+ safeMode: true,
+ devMode: false
+ },
+
+ controls: FunkinControls.getDefaultControlMappings()
+ };
+ }
+
+ static function loadFromSaveSlot(slot:Int):Save
+ {
+ FlxG.log.add('[SAVE] Loading save from slot $slot [${SAVE_NAME + slot}]');
+ FlxG.save.bind(SAVE_NAME + slot, SAVE_PATH);
+
+ switch (FlxG.save.status)
+ {
+ case EMPTY:
+ FlxG.log.add('[SAVE] No save data found, binding new...');
+ return new Save();
+
+ case SAVE_ERROR(msg):
+ FlxG.log.add('[SAVE] Error loading save! More info: $msg');
+
+ case BOUND(_, _):
+ FlxG.log.add('[SAVE] Found bounded save!');
+ var gameSave:Save = SaveMigrator.migrateSave(FlxG.save.data);
+ FlxG.save.mergeData(gameSave.data, true);
+
+ return gameSave;
+
+ default:
+ }
+
+ return null;
+ }
+
+ /**
+ * Backs up a save file into the backup slots, starting from 1000.
+ * @param data The save data to backup.
+ * @return The slot it was saved at.
+ */
+ public static function saveToBackupSlot(data:Dynamic):Int
+ {
+ var backupSave:FlxSave = new FlxSave();
+ var slot:Int = 999;
+
+ while (backupSave.status != EMPTY)
+ {
+ slot++;
+ backupSave.bind(SAVE_NAME + slot, SAVE_PATH);
+ }
+
+ backupSave.mergeData(data, true);
+ backupSave.destroy();
+
+ return slot;
+ }
+
+ static function get_instance():Save
+ {
+ if (_instance == null)
+ {
+ return _instance = loadFromSaveSlot(1);
+ }
+
+ return _instance;
+ }
+}
diff --git a/src/funkin/data/save/SaveMigrator.hx b/src/funkin/data/save/SaveMigrator.hx
new file mode 100644
index 0000000..d5ca1d1
--- /dev/null
+++ b/src/funkin/data/save/SaveMigrator.hx
@@ -0,0 +1,130 @@
+package funkin.data.save;
+
+import flixel.util.FlxSave;
+import funkin.structures.SaveStructure;
+
+class SaveMigrator
+{
+ public static function migrateSave(saveData:Dynamic):Save
+ {
+ var version:Null = null;
+
+ try
+ {
+ version = Version.stringToVersion(saveData?.version);
+ }
+ catch (e:Exception)
+ {
+ trace('[ERROR] Migrating save data has an invalid version.');
+ version = null;
+ }
+
+ if (version == null)
+ return new Save();
+
+ if (Save.SAVE_VERSION != version && version > Save.SAVE_VERSION)
+ {
+ var slot:Int = Save.saveToBackupSlot(saveData);
+ SystemUtil.alert('Save Warning!',
+ 'The current save loaded is a higher version than what this game supports!\nThis may make unexpected things happen!\nJust in case, the game has put this save in ${Save.SAVE_NAME}$slot as a backup.');
+ }
+
+ if (version != Save.SAVE_VERSION && version.satisfies(Save.SAVE_VERSION_RULE))
+ {
+ trace('[INFO] Old/New version ($version) compatible with new/old (${Save.SAVE_VERSION})');
+ var defaultData:Dynamic = Save.getDefault();
+
+ saveData = ReflectUtil.deepMerge(defaultData, saveData, false);
+
+ saveData.version = Save.SAVE_VERSION;
+ }
+
+ return new Save(saveData);
+ }
+
+ /**
+ * Migrates your Chillin' Engine save for the 3 people that used it.
+ * @return The converted save file.
+ */
+ public static function migrateChillinEngine():Save
+ {
+ var oldSave:FlxSave = new FlxSave();
+ var newSave:SaveStructure = Save.getDefault();
+
+ // HIGHSCORES
+ oldSave.bind('scores', 'tilnotdrip');
+
+ var songScores:Map = oldSave.data?.songScores ?? new Map();
+
+ for (id in songScores.keys())
+ {
+ if (id.startsWith('week')) // week and weekend both start with week, must be like this
+ {
+ newSave.progress.highscores.storyMode.set(id, songScores.get(id));
+ newSave.progress.storyMode.set(id, 0);
+ }
+ else
+ {
+ newSave.progress.highscores.freeplay.set(id, songScores.get(id));
+ }
+ }
+
+ // CONTROLS
+ // i think i mightve disabled saving for these, but its worth a shot
+ oldSave.bind('controls', 'tilnotdrip');
+
+ var controls:Map>> = oldSave.data?.controls ?? new Map>>();
+
+ for (control in controls.keys())
+ {
+ var value:Array> = controls.get(control);
+ newSave.controls.set(control, {keyboard: value[0], gamepad: value[1]});
+ }
+
+ // OPTIONS
+ var isLegacy:Bool = false;
+ oldSave.bind('options', 'tilnotdrip');
+
+ isLegacy = oldSave.isEmpty();
+
+ if (isLegacy)
+ oldSave.bind('settings', 'tilnotdrip');
+
+ var options:Map = null;
+
+ if (isLegacy)
+ {
+ options = new Map();
+
+ var maps:Array