Compare commits
60 Commits
d1523acf94
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 995ddf329f | |||
| 5fc823b392 | |||
| 490b49e55d | |||
| 6fc263074e | |||
| befb464619 | |||
| f2bb72b3dc | |||
| 81814fa590 | |||
| 611bccfb9b | |||
| e8d2855b36 | |||
| 1f540a436a | |||
| c303478ad7 | |||
| 0b24636c4f | |||
| bcb5a20f27 | |||
| 39fe9be4dc | |||
| 7801dbe6d7 | |||
| 0ed07e454a | |||
| 18a66009e1 | |||
| 6e244d1318 | |||
| 9e4f90f218 | |||
| 3e72181bee | |||
| 01d81981f7 | |||
| 89211753e2 | |||
| 2e803b5a76 | |||
| a8aab0187e | |||
| 63a1be497b | |||
| 7470c69845 | |||
| c2f5d6983a | |||
| 575b6e5c62 | |||
| 67e63dc611 | |||
| 9319076b44 | |||
| d1de15a0ca | |||
| dfce1ae412 | |||
| 5e3fa62a06 | |||
| 330101a937 | |||
| 9803364adb | |||
| 2299904557 | |||
| 578e507b96 | |||
| d536f7ba69 | |||
| 851d07bc43 | |||
| 451c07747e | |||
| 5df9d958ab | |||
| 47a418b689 | |||
| fe60881476 | |||
| 4a9dfe0b45 | |||
| 7ae2ef5443 | |||
| 2cd2975ad4 | |||
| f4c4ed4c36 | |||
| 03156d2036 | |||
| 56fc45ab52 | |||
| e477ff095a | |||
| fc1b3ac147 | |||
| 95250d1668 | |||
| 5a74124cae | |||
| 337d93bcea | |||
| fa0cc1a970 | |||
| 229a68bfdd | |||
| 6c48c40d67 | |||
| 1df18b3c57 | |||
| 7806f6420f | |||
| 5613303d52 |
@@ -1,6 +1,6 @@
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/mirrors-clang-format
|
||||
rev: 6d365699efc33b1b432eab5b4ae331a19e1857de # frozen: v18.1.2
|
||||
rev: 64827eb3528d4dc019b01153e9fb79107241405f # frozen: v20.1.6
|
||||
hooks:
|
||||
- id: clang-format
|
||||
exclude: ".*third_party/.*"
|
||||
@@ -9,6 +9,6 @@ repos:
|
||||
hooks:
|
||||
- id: cmake-format
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 552baf822992936134cbd31a38f69c8cfe7c0f05 # frozen: 24.3.0
|
||||
rev: 8a737e727ac5ab2f1d4cf5876720ed276dc8dc4b # frozen: 25.1.0
|
||||
hooks:
|
||||
- id: black
|
||||
|
||||
104
CMakeLists.txt
104
CMakeLists.txt
@@ -174,3 +174,107 @@ endif()
|
||||
add_executable(validate src/validate.cpp)
|
||||
target_link_libraries(validate ${PROJECT_NAME}-static)
|
||||
target_include_directories(validate PRIVATE include)
|
||||
|
||||
# symbol visibility tests
|
||||
if(NOT CMAKE_BUILD_TYPE STREQUAL Debug)
|
||||
if(APPLE)
|
||||
set(symbol_exports ${CMAKE_CURRENT_SOURCE_DIR}/apple-symbol-exports.txt)
|
||||
set(symbol_imports ${CMAKE_CURRENT_SOURCE_DIR}/apple-symbol-imports.txt)
|
||||
else()
|
||||
set(symbol_exports ${CMAKE_CURRENT_SOURCE_DIR}/symbol-exports.txt)
|
||||
if(CMAKE_SYSTEM_PROCESSOR STREQUAL aarch64)
|
||||
set(symbol_imports ${CMAKE_CURRENT_SOURCE_DIR}/aarch64-symbol-imports.txt)
|
||||
else()
|
||||
set(symbol_imports ${CMAKE_CURRENT_SOURCE_DIR}/symbol-imports.txt)
|
||||
endif()
|
||||
endif()
|
||||
add_test(
|
||||
NAME conflict_set_shared_symbols
|
||||
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/test_symbols.sh
|
||||
$<TARGET_FILE:${PROJECT_NAME}> ${symbol_exports} ${symbol_imports})
|
||||
add_test(
|
||||
NAME conflict_set_static_symbols
|
||||
COMMAND
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/test_symbols.sh
|
||||
$<TARGET_FILE:${PROJECT_NAME}-static> ${symbol_exports} ${symbol_imports})
|
||||
endif()
|
||||
|
||||
if(NOT CMAKE_CROSSCOMPILING)
|
||||
find_program(HARDENING_CHECK hardening-check)
|
||||
if(HARDENING_CHECK)
|
||||
add_test(NAME hardening_check
|
||||
COMMAND ${HARDENING_CHECK} $<TARGET_FILE:${PROJECT_NAME}>
|
||||
--nofortify --nostackprotector)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# packaging
|
||||
|
||||
set(CPACK_PACKAGE_CONTACT andrew@weaselab.dev)
|
||||
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME all)
|
||||
|
||||
set(CPACK_PACKAGE_VENDOR "Weaselab")
|
||||
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
|
||||
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
|
||||
|
||||
# rpm
|
||||
set(CPACK_RPM_PACKAGE_ARCHITECTURE ${CMAKE_SYSTEM_PROCESSOR})
|
||||
set(CPACK_RPM_SPEC_INSTALL_POST "/bin/true") # avoid stripping
|
||||
set(CPACK_RPM_PACKAGE_LICENSE "Apache 2.0")
|
||||
set(CPACK_RPM_FILE_NAME RPM-DEFAULT)
|
||||
|
||||
# deb
|
||||
set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)
|
||||
# see *-imports.txt - dependency versions need to be synced with symbol versions
|
||||
if(CMAKE_SYSTEM_PROCESSOR STREQUAL aarch64)
|
||||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.17)")
|
||||
else()
|
||||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.14)")
|
||||
endif()
|
||||
|
||||
# macos
|
||||
set(CMAKE_OSX_DEPLOYMENT_TARGET 11.0)
|
||||
if(APPLE)
|
||||
find_program(PANDOC_EXE pandoc)
|
||||
if(PANDOC_EXE)
|
||||
execute_process(COMMAND ${PANDOC_EXE} ${CMAKE_CURRENT_SOURCE_DIR}/README.md
|
||||
-o ${CMAKE_CURRENT_BINARY_DIR}/README.txt)
|
||||
set(CPACK_RESOURCE_FILE_README ${CMAKE_CURRENT_BINARY_DIR}/README.txt)
|
||||
endif()
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/LICENSE
|
||||
${CMAKE_CURRENT_BINARY_DIR}/LICENSE.txt COPYONLY)
|
||||
set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_BINARY_DIR}/LICENSE.txt)
|
||||
endif()
|
||||
|
||||
include(CPack)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
target_include_directories(
|
||||
${PROJECT_NAME}
|
||||
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}>)
|
||||
|
||||
target_include_directories(
|
||||
${PROJECT_NAME}-static
|
||||
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}>)
|
||||
|
||||
set_target_properties(
|
||||
${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION}
|
||||
SOVERSION ${PROJECT_VERSION_MAJOR})
|
||||
|
||||
install(
|
||||
TARGETS ${PROJECT_NAME} ${PROJECT_NAME}-static
|
||||
EXPORT ${PROJECT_NAME}Config
|
||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||
|
||||
install(DIRECTORY include/
|
||||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME})
|
||||
|
||||
install(EXPORT ${PROJECT_NAME}Config
|
||||
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}/cmake)
|
||||
|
||||
cpack_add_component(all)
|
||||
|
||||
203
LICENSE
Normal file
203
LICENSE
Normal file
@@ -0,0 +1,203 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
100
README.md
100
README.md
@@ -1,26 +1,98 @@
|
||||
# Weaseljson
|
||||
# WeaselJSON: A Streaming JSON Parser
|
||||
|
||||
An rfc8259-compliant streaming json parser
|
||||
## What is WeaselJSON?
|
||||
|
||||
# Features
|
||||
WeaselJSON is a high-performance, streaming JSON parser that uses callbacks instead of building an object tree in memory. It's optimized with SIMD instructions and designed for situations where you either can't or don't want to load entire JSON files into memory.
|
||||
|
||||
- SAX-style api
|
||||
## Key Characteristics
|
||||
|
||||
**What's good:**
|
||||
- Uses constant memory regardless of input size
|
||||
- Fast parsing with SIMD optimizations
|
||||
- Follows JSON spec properly with good security practices
|
||||
- You can't accidentally make it O(n²) (unlike the simdjson ondemand api)
|
||||
- Enables weird use cases like parsing just the beginning of huge JSON files
|
||||
|
||||
**What's not good:**
|
||||
- The callback API is a pain to use correctly
|
||||
- Requires a lot of boilerplate for simple tasks
|
||||
- Most people don't actually need streaming JSON parsing
|
||||
|
||||
## JSON Parser Decision Guide
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
A[Need to parse JSON?] --> B{Memory or size constraints?}
|
||||
|
||||
B -->|Yes| C[WeaselJSON<br/>Streaming parser]
|
||||
|
||||
B -->|No| D{Need maximum speed?}
|
||||
|
||||
D -->|No| E[SimdJSON DOM<br/>Easy to use]
|
||||
|
||||
D -->|Yes| F[SimdJSON On-Demand<br/>Fastest option]
|
||||
```
|
||||
|
||||
## When to Use What
|
||||
|
||||
### Use **SimdJSON DOM API** when:
|
||||
- You want to write `obj["key"]` and have it just work
|
||||
- JSON files are reasonably sized (but you still want decent performance)
|
||||
- You care about getting things done
|
||||
- You need full document validation upfront
|
||||
|
||||
### Use **SimdJSON On-Demand** when:
|
||||
- Performance is critical and your data fits in memory
|
||||
- You can work with forward-only traversal (no random access or backtracking)
|
||||
- You need maximum speed but still want a usable API
|
||||
- You're okay with partial validation (only validates parts you actually access)
|
||||
- Your JSON keys don't contain escape sequences (OnDemand matches raw keys without unescaping)
|
||||
|
||||
### Use **WeaselJSON** when:
|
||||
- You want to parse just part of a JSON file without reading the rest
|
||||
- You need to convert JSON into some other format as you parse it
|
||||
- You need predictable performance characteristics
|
||||
- Writing stateful callbacks is your idea of fun
|
||||
|
||||
## The Reality
|
||||
|
||||
WeaselJSON solves real problems that other parsers can't handle, but most people don't have those problems. The callback API is legitimately difficult to use correctly, which pushes most developers toward easier alternatives.
|
||||
|
||||
The parser represents excellent engineering work and occupies a useful niche. It's the kind of tool you're very glad exists when you actually need it, but most people will never need it.
|
||||
|
||||
## Technical Reference
|
||||
|
||||
### Features
|
||||
- SAX-style callback API
|
||||
- No memory allocations during parsing
|
||||
- O(1) stack memory usage
|
||||
- Streaming api - no need to buffer the entire document in memory. Parsing is resumed when more data is available
|
||||
- Strings are unescaped in place before they're presented. No unicode normalization is performed
|
||||
- O(1) memory usage regardless of input size
|
||||
- Streaming API - no need to buffer the entire document in memory. Parsing is resumed when more data is available
|
||||
- By default, strings are unescaped in place before they're presented (modifies your input buffer). No unicode normalization is performed
|
||||
- Robust to crashes with untrusted input
|
||||
- SIMD optimizations for string scanning and validation
|
||||
|
||||
# Rfc8259 conformance notes
|
||||
|
||||
### RFC 8259 Conformance
|
||||
- There are no limits on number precision. Numbers are only validated syntactically and are presented as is
|
||||
- Only utf-8 is accepted
|
||||
- Invalid utf-8 is rejected
|
||||
- Only UTF-8 is accepted
|
||||
- Invalid UTF-8 is rejected
|
||||
- Byte order markers are rejected
|
||||
- Invalid escaped utf16 surrogate pairs are rejected
|
||||
- Invalid escaped UTF-16 surrogate pairs are rejected
|
||||
- Documents that are too deeply nested are rejected to control memory usage
|
||||
- Duplicate keys are presented
|
||||
|
||||
# Caveats
|
||||
|
||||
### Caveats
|
||||
- Users should be prepared to discard work done during SAX callbacks if the document is ultimately rejected
|
||||
- Requires manual state management in callback functions
|
||||
- API is more complex than DOM-style parsers
|
||||
|
||||
## Maintainer Notice
|
||||
|
||||
⚠️ **Important**: This is a hobby project by a single maintainer. Please be aware that:
|
||||
|
||||
- I'm doing this for fun and learning, not as a professional obligation
|
||||
- Don't rely on this for mission-critical applications without understanding these limitations
|
||||
- Feel free to email me, but I may not respond promptly
|
||||
|
||||
---
|
||||
|
||||
*Note: This document was written by AI (Claude) in collaboration with the author.*
|
||||
|
||||
56
corpus/00281561d2e6f9dfaa0d2bc9abc1890843c3fd5b
Normal file
56
corpus/00281561d2e6f9dfaa0d2bc9abc1890843c3fd5b
Normal file
@@ -0,0 +1,56 @@
|
||||
{";8nf" : 8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
,"4" :-8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<EFBFBD>
|
||||
|
||||
1
corpus/0112005a58378ca3ab8e68210efe53bdfe679c48
Normal file
1
corpus/0112005a58378ca3ab8e68210efe53bdfe679c48
Normal file
@@ -0,0 +1 @@
|
||||
"\uDA00J\0300
|
||||
1
corpus/01b91d6dbbec723d445ec1bb3db70b2ed76eb4c7
Normal file
1
corpus/01b91d6dbbec723d445ec1bb3db70b2ed76eb4c7
Normal file
@@ -0,0 +1 @@
|
||||
[[[0,0,[12011111111112111111110,4,">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>[],[[],[[],],[[[3>>>>>>>>>>>->>>>>>3344,4244>1>;":Z{}-
|
||||
9
corpus/02ef75d4f6959410df3d4e178c58140b213bda33
Normal file
9
corpus/02ef75d4f6959410df3d4e178c58140b213bda33
Normal file
@@ -0,0 +1,9 @@
|
||||
{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"'":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[[2,
|
||||
2,2],
|
||||
{},
|
||||
{},{},{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
1
corpus/03f848fd4b9810c1fd8f6f651dba31671b74f975
Normal file
1
corpus/03f848fd4b9810c1fd8f6f651dba31671b74f975
Normal file
@@ -0,0 +1 @@
|
||||
["\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9DDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA8D\uDDDdDDDD
|
||||
1
corpus/043655755e361e47951b7520c13bdc20e2566fba
Normal file
1
corpus/043655755e361e47951b7520c13bdc20e2566fba
Normal file
@@ -0,0 +1 @@
|
||||
["\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDDDDtx\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDux\uDA9D\uDDDDDux\uDA4D\uDDDd\uDA9D\uDDDDDuDDD
|
||||
19
corpus/04d401e60a25ae5e095c4e64d0806b96990f1622
Normal file
19
corpus/04d401e60a25ae5e095c4e64d0806b96990f1622
Normal file
@@ -0,0 +1,19 @@
|
||||
{"7":"k7", "6":
|
||||
"{7", "6":
|
||||
"{7", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"{7", "":"{9991990.-97", "7":"{7", "7":
|
||||
false, "7":
|
||||
"{w", "7":"k7", "6":
|
||||
"{7", "6":
|
||||
"{7", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"{7", "":"{9991990.-97", "7":"{7", "7":
|
||||
false, "7":
|
||||
"{7", "":"{9991990.597", "7":"{7", "7":
|
||||
false, "6":
|
||||
"{7", "7":
|
||||
"{7", "":"{9991990.-97", "7":"{7", "7":
|
||||
false, "7":
|
||||
"{7", "\u "":"{999199", "77", "7":
|
||||
false, ""
|
||||
8
corpus/05734c2931f7b3786cee31c85f39929a5908a2b9
Normal file
8
corpus/05734c2931f7b3786cee31c85f39929a5908a2b9
Normal file
@@ -0,0 +1,8 @@
|
||||
[[2,
|
||||
[{},[
|
||||
{
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},{},{},
|
||||
1
corpus/06e3153e67dddab76c6400f3e9efacf0d1c8e566
Normal file
1
corpus/06e3153e67dddab76c6400f3e9efacf0d1c8e566
Normal file
@@ -0,0 +1 @@
|
||||
"fa\udafa\udffa2fqfa\udafa\udffa2fa2@@@ffa2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffadffa4fa2@@@@@a2@@@Aa2@2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffadffa2fa2@@@@@a2@2@fa\udafa\udffa2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\ud2fffa\udafa\udffa2ffa\udafa\udfa2ff!!!!!%!!!!!!!!!!!!!!!!!!fa\udafa\udffa2ffa\udafa\udffadfa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffa2@@@Aaa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\udafa\udffadffa2fa2@@@@@a2@2@fa\udafa\udffa2fqfa\udafa\udffa2fffa\udafa\udffa2ffa\udafa\udfa2fffa\udafa\udffa2ffa\ud2fffa\udafadfa2ff!!!@@a2@@@@AA
|
||||
1
corpus/070f8d58ad32d4da4b3840792bb180976cba90fe
Normal file
1
corpus/070f8d58ad32d4da4b3840792bb180976cba90fe
Normal file
@@ -0,0 +1 @@
|
||||
[[[[[[[true,true,[ true, true,true,true,[ [[[true,true,true,[ true,true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[ true,true,[ true,true, true,true,true,[ true,[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,[[[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[[[[[true,true,[ true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,true,true,true,[ true,[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[[[[[true,true,[ true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[ true,true,true,[ true,[[[[[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,true,true[
|
||||
1
corpus/07962e32beac4da179b30c06f1c1e71bd220f782
Normal file
1
corpus/07962e32beac4da179b30c06f1c1e71bd220f782
Normal file
@@ -0,0 +1 @@
|
||||
nn
|
||||
BIN
corpus/07de6e6f5949145ac1920778f7de89fa8c2cc067
Normal file
BIN
corpus/07de6e6f5949145ac1920778f7de89fa8c2cc067
Normal file
Binary file not shown.
90
corpus/084b00dcb1279341e2a57ab24dfd23f818ac8e14
Normal file
90
corpus/084b00dcb1279341e2a57ab24dfd23f818ac8e14
Normal file
@@ -0,0 +1,90 @@
|
||||
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8111,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}, [[[{},{},[[false, [[false, [[[{},4,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,3999099999,8,99919999999,999099999,8,99199999,9999909,8n":},
|
||||
{},5,[3<> -4,331
|
||||
39
corpus/08b55f10bf0210da6caf39e84458ad9d77da60af
Normal file
39
corpus/08b55f10bf0210da6caf39e84458ad9d77da60af
Normal file
@@ -0,0 +1,39 @@
|
||||
{"7":"k7", "6":
|
||||
"{7", "6":
|
||||
"{7", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"{7", "7":
|
||||
false, "7":
|
||||
"{w", "7":"k7", "6":
|
||||
"{7", "6":
|
||||
"{7", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"A{7", "":"{9991990.-97", "7":"{7", "7":
|
||||
false, "7":
|
||||
"{7", "":"{9991990.597", "7":"{7", "7":
|
||||
false, "6":
|
||||
"{7", "7":
|
||||
"{7", "":"{9991990.-97", "7":"{7", "7":
|
||||
false, "1":
|
||||
"{7", "":"{999199", "7":"k7", "7":
|
||||
false, "7":
|
||||
false, "7":
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"{7", "":"{999199", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"{7",
|
||||
fal ""
|
||||
2
corpus/098429be19e5973d2d7bf7f8c89ed0f076a877ae
Normal file
2
corpus/098429be19e5973d2d7bf7f8c89ed0f076a877ae
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
{"6,..\udafa\udffaXX4,[[Xg<58>Y018
|
||||
1
corpus/09fce1bd5433b8690cdce7e2351c832b4f933afe
Normal file
1
corpus/09fce1bd5433b8690cdce7e2351c832b4f933afe
Normal file
@@ -0,0 +1 @@
|
||||
"\ufa2
|
||||
BIN
corpus/0af32bd800b1a0abf0e1dfa98e7529df716956fc
Normal file
BIN
corpus/0af32bd800b1a0abf0e1dfa98e7529df716956fc
Normal file
Binary file not shown.
1
corpus/0bf54d3e79f640685f6c1b95575c68b79b8a1066
Normal file
1
corpus/0bf54d3e79f640685f6c1b95575c68b79b8a1066
Normal file
@@ -0,0 +1 @@
|
||||
[5,[5K,<2C>ǀ<EFBFBD><C780><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
BIN
corpus/0c0e75fc2c9e2bfc7eeb215d8a7c7e07e34e2c34
Normal file
BIN
corpus/0c0e75fc2c9e2bfc7eeb215d8a7c7e07e34e2c34
Normal file
Binary file not shown.
1
corpus/0c830159116f8d1f7535a7fc3303d828d1100ed2
Normal file
1
corpus/0c830159116f8d1f7535a7fc3303d828d1100ed2
Normal file
@@ -0,0 +1 @@
|
||||
[ [ [false, [ [[false, [ fa
|
||||
85
corpus/0d4be07052ed814953dba94e9d1ac96b5e331b38
Normal file
85
corpus/0d4be07052ed814953dba94e9d1ac96b5e331b38
Normal file
@@ -0,0 +1,85 @@
|
||||
[8,[[[[ [8,[[[[ [[8,[8,[8,[[[
|
||||
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,[[[
|
||||
[8,[8,[8,[[[
|
||||
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,[[[
|
||||
[8,8,[[[[ [[8,[8,[8,[[[
|
||||
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,[[[
|
||||
[8,[8,[8,[[[
|
||||
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,[[[
|
||||
[8,8,[[[[ [[8,[8,[8,[[[
|
||||
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,[[[
|
||||
[8,[8,[8,[[[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,[[[
|
||||
[8,[8,[8,[[[
|
||||
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-418,[8,[[[[[-41.8,[8,8[,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[641.8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[
|
||||
[[-418,[8,[[[[[-41.8,[8,[8,[[[[[-41.8,[3,[8,[[[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,6[[[
|
||||
[8,[8,[8,[[[
|
||||
[[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[
|
||||
BIN
corpus/0dda5f14c2fcb381bbe5ca20e43df2b926697ad8
Normal file
BIN
corpus/0dda5f14c2fcb381bbe5ca20e43df2b926697ad8
Normal file
Binary file not shown.
102
corpus/0e43f9b541a61ade928ae1061d25c6b2bdbf3dfb
Normal file
102
corpus/0e43f9b541a61ade928ae1061d25c6b2bdbf3dfb
Normal file
@@ -0,0 +1,102 @@
|
||||
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,{"": [[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[
|
||||
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,"V@d83998,9919999999,999099999de557,e3339\ud
|
||||
1
corpus/0f02ad1c656a6d87513176bc3d8dffd83e849fc4
Normal file
1
corpus/0f02ad1c656a6d87513176bc3d8dffd83e849fc4
Normal file
@@ -0,0 +1 @@
|
||||
["\r\/\f\r\1\b
|
||||
16
corpus/0f5b4331b5232ab9c654683f7917d135c7bdb811
Normal file
16
corpus/0f5b4331b5232ab9c654683f7917d135c7bdb811
Normal file
@@ -0,0 +1,16 @@
|
||||
[[
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[[
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
425,"<22>-
|
||||
1
corpus/0f6fe2afac3780101a3a69823a338f6700687c25
Normal file
1
corpus/0f6fe2afac3780101a3a69823a338f6700687c25
Normal file
File diff suppressed because one or more lines are too long
1
corpus/0fe83e357016dd5f710a1d516620c5d42247ef27
Normal file
1
corpus/0fe83e357016dd5f710a1d516620c5d42247ef27
Normal file
@@ -0,0 +1 @@
|
||||
{"1f\u043e\u043b\u0441]u043e\u0440\u041f\u043e\u043budd9d41d\ud82d\udd9c8\ud5de39\ud41d41d\ud82d\udd9c;8\u<><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>d0de39\u2d\udd43f0\u0430 \u0417\u0982dd9c8u\2d8d435\u04\u43\u0982dd9c]u\04<30>35\u043a
|
||||
1
corpus/0ffb103efcb50aeb0d19bcc4b710ef03f74192c0
Normal file
1
corpus/0ffb103efcb50aeb0d19bcc4b710ef03f74192c0
Normal file
@@ -0,0 +1 @@
|
||||
[ [ [ [ [ [ [ [[ [ [ [ 1e+]"]
|
||||
BIN
corpus/106cbebe9daafc5fd51356657ca6a43a632768ec
Normal file
BIN
corpus/106cbebe9daafc5fd51356657ca6a43a632768ec
Normal file
Binary file not shown.
1
corpus/111581481e1124ca30d38e1678327ed0740760cd
Normal file
1
corpus/111581481e1124ca30d38e1678327ed0740760cd
Normal file
@@ -0,0 +1 @@
|
||||
[5,7.777E-5,[57E-5,77.777E-<2D>7.77E-ǀ
|
||||
1
corpus/11dbb23d959445af7795ec79114a3757464ee787
Normal file
1
corpus/11dbb23d959445af7795ec79114a3757464ee787
Normal file
@@ -0,0 +1 @@
|
||||
[5,[5,[2,[6,[5,[5,5,[5,[5,[[5,[5,[417,4,5,[[5,5,[5,[5,[[nul7
|
||||
1
corpus/123d38b1499a781462347577d0f0f06096ca2470
Normal file
1
corpus/123d38b1499a781462347577d0f0f06096ca2470
Normal file
@@ -0,0 +1 @@
|
||||
{"1f.u043e\u043b\u0441]u04\u0440\u041f\u043e\u043b\u0442\u043E\u0443b\u0441]043b\u043eTu\u0430 \u0417\u0870\u043b\u0435\u043a
|
||||
1
corpus/12408e70307ebf13050d3173551d808cb2b40843
Normal file
1
corpus/12408e70307ebf13050d3173551d808cb2b40843
Normal file
@@ -0,0 +1 @@
|
||||
["\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu\uDA9D\uDDA9D\uDA9D\uDDDDD-2Dux\uDA9D\uDDDdDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDA9D\uDA9D\uDDDD\<5C> \b\b\fDDDux\uDA9D\uDDDdDDA0
|
||||
55
corpus/129e9e965ded6b1ee8b5e93971b8edc0d1afd9b0
Normal file
55
corpus/129e9e965ded6b1ee8b5e93971b8edc0d1afd9b0
Normal file
@@ -0,0 +1,55 @@
|
||||
{"JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ;;" : -8,"88" :-8,"8nf" : 8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
, "88" :-8,"8nf" : 8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
vvv
|
||||
208
corpus/138d0a0bcdee11c91848e8531162d8b926e340cc
Normal file
208
corpus/138d0a0bcdee11c91848e8531162d8b926e340cc
Normal file
@@ -0,0 +1,208 @@
|
||||
["a",
|
||||
43333333333333333333
|
||||
|
||||
,1,333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323336E83333333
|
||||
,1,33,333333333333,3303337E833333333333,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,30342.5e+53333
|
||||
,1,3333333,33033337E83333333333333,3323036E83333333
|
||||
,1,3333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,30342.5e+53333
|
||||
,1,3333333,33033337E83333333333333,3323036E83333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333733333333
|
||||
,333333333333333333,33333333333333333333333333333
|
||||
,1,3333333,33333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,30342.5e+53333
|
||||
,1,33333366666666666666666,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323336E83333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,30342.5e+53333
|
||||
,1,3333333,33033337E833333333333333333333
|
||||
,0,3333
|
||||
,133333E83333333,33333333333333333333333333333333,33332.5e+53333
|
||||
,1,333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323036E83333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333733333333
|
||||
,33333333333333,3303337E8333333333333
|
||||
,0,-7333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323336E83333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,33033337E833333333333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333333333333333333333,33332.5e+53333
|
||||
,333,3303337E833333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323336E83333333
|
||||
,1,33333333333,33332.5e+53333
|
||||
,1,3333333,3303337E833333333,3303337E83333303333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323336E83333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,33,333333333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333733333333
|
||||
,333333333333333333,333333333333333333333333333335e+53333
|
||||
,1333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,30342.5e+53333
|
||||
,1,3333333,33033337E83333333333333,3323036E83333333
|
||||
,1,3333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,1333333333333333333333333E83333333,33333333333333333333333333333333,33332.5e+53333
|
||||
,1,333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323036E83333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333733333333
|
||||
,33333333333333,3303337E8333333333333
|
||||
,0,-7333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333,3323336E83333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133300000000014926626734644483412,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,33033337E833333333333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E833333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,333333333333,3303333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E83333
|
||||
,133333333333333333333333333333333,30342.5e+53333
|
||||
,1,3333333,33033337E83333333333333,3323036E83333333
|
||||
,1,3333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333333333333333333333,33332.5e+53333
|
||||
,1,3333333,3303337E8333333,3303337E8333333333333
|
||||
,0,-73333
|
||||
,1333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,133333333333333
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333
|
||||
,1,33,333333333333,3303337E8333333333333
|
||||
,0,-733
|
||||
,1,33333333333333
|
||||
,1,33333333333333,33333333333333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,13333333333333333333333"ffa2fa2@@@@@a2@@@Aa2@@@@a2fa2@fa\udafa\udffa2fqfa\udafa\udffa2fff3333333333
|
||||
,0,-7333333333,3303337E8333333333333
|
||||
,0,3333
|
||||
,1333333333,3303337E8333333333333
|
||||
,3333333,3303337E8333333333333
|
||||
,0,<2C><><EFBFBD>33333
|
||||
,0,1,3333
|
||||
2
corpus/13d4f8ca348c0a2e689ccd6b164e170516943afc
Normal file
2
corpus/13d4f8ca348c0a2e689ccd6b164e170516943afc
Normal file
@@ -0,0 +1,2 @@
|
||||
[6
|
||||
[<5B>
|
||||
1
corpus/1402eec8b2587935d22c97a9dd31b86886a33267
Normal file
1
corpus/1402eec8b2587935d22c97a9dd31b86886a33267
Normal file
@@ -0,0 +1 @@
|
||||
[ [ [false, [ [ [ [false, [ [false, [ [false, [ [ [ [false, [ [false, [ [false, [ <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>3
|
||||
150
corpus/1472233900d14260043f0941435e9cd3c6d4f09b
Normal file
150
corpus/1472233900d14260043f0941435e9cd3c6d4f09b
Normal file
@@ -0,0 +1,150 @@
|
||||
{"":[{"":[[2,
|
||||
2,2,
|
||||
[{},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
|
||||
]],[[{},[{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
|
||||
]],[[
|
||||
|
||||
]],[[[
|
||||
{ },[
|
||||
[[[[[[[[
|
||||
|
||||
]],[[[
|
||||
{ },[
|
||||
[[[[[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
|
||||
]],[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
|
||||
]],[[
|
||||
|
||||
]],[[[
|
||||
{ },[
|
||||
[[[[[[{},[{},
|
||||
[[
|
||||
|
||||
]],[
|
||||
|
||||
]],[[[
|
||||
{ },
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
|
||||
],
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
49
corpus/15248a853130ee8aceb38ee058de3bc01d25db14
Normal file
49
corpus/15248a853130ee8aceb38ee058de3bc01d25db14
Normal file
@@ -0,0 +1,49 @@
|
||||
[2,
|
||||
2,2,2,2,2,2,2,
|
||||
[[2,2,2,2,2,2,
|
||||
2,
|
||||
2,
|
||||
[2,2,22,2,
|
||||
2,2,2,2,2,2,2,2,
|
||||
[[2,2,
|
||||
2,2,
|
||||
2,
|
||||
2,2,
|
||||
2,2,[2,
|
||||
2,2,2,2,2,2,2,[2,2,
|
||||
2,2,2,2,
|
||||
2,
|
||||
2,
|
||||
2,2,22,2,2,2,2,2,2,2,2,2,
|
||||
[2,2,
|
||||
2,2,
|
||||
2,
|
||||
[2,2,
|
||||
2,2,2,2,
|
||||
2,2,2,
|
||||
2,[2,2,22,2,
|
||||
2,2,2,2,
|
||||
2,
|
||||
[2,2,22,2,
|
||||
2,2,2,2,2,2,2,2,
|
||||
[[2,2,
|
||||
2,2,
|
||||
2,
|
||||
[2,2,
|
||||
2,2,2,2,
|
||||
2,2,2,
|
||||
2,
|
||||
[2,2,22,2,
|
||||
2,[2,
|
||||
22,2,
|
||||
2,2,2,
|
||||
2,
|
||||
[2,2,22,2,
|
||||
2,2,2,2,
|
||||
2,
|
||||
[2,2,22,2,
|
||||
2,2,2,2,2,22,2,2,
|
||||
2,
|
||||
[2,2,22,2,
|
||||
2,[2,
|
||||
2@
|
||||
13
corpus/161ccee4fc3ea50ac8595fa1c10561690f600bb3
Normal file
13
corpus/161ccee4fc3ea50ac8595fa1c10561690f600bb3
Normal file
@@ -0,0 +1,13 @@
|
||||
[[
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[[
|
||||
5,[
|
||||
|
||||
|
||||
|
||||
|
||||
425,"<22>-
|
||||
1
corpus/163f4ce51983998972ceafb0658d7d1420538170
Normal file
1
corpus/163f4ce51983998972ceafb0658d7d1420538170
Normal file
@@ -0,0 +1 @@
|
||||
"\u00000`0000004gk<67>rue<75>
|
||||
1
corpus/1658b8d5cb743963dd77b392401703243d7f0946
Normal file
1
corpus/1658b8d5cb743963dd77b392401703243d7f0946
Normal file
@@ -0,0 +1 @@
|
||||
[[-4,[[-2424,-2424,[[-24 [-<2D>2
|
||||
26
corpus/173c23cab81ad441e623a2b63dad120d25ce4abd
Normal file
26
corpus/173c23cab81ad441e623a2b63dad120d25ce4abd
Normal file
@@ -0,0 +1,26 @@
|
||||
{"7":"k7", "6":
|
||||
"{7", "6":
|
||||
"{7", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"{7", "":"{9991990.-97", "7":"{7", "7":
|
||||
false, "7":
|
||||
"{w", "7":"k7", "6":
|
||||
"{7", "6":
|
||||
"{7", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"A{7", "":"{9991990.-97", "7":"{7", "7":
|
||||
false, "7":
|
||||
"{7", "":"{9991990.597", "7":"{7", "7":
|
||||
false, "2":
|
||||
"{7", "7":
|
||||
"{7", "":"{9991990.999199", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"{7", "":"{9991990.-=97", "7":"{7", "7":
|
||||
false, "7":
|
||||
"{7", "":"{9991990.597", "7":"{7", "7":
|
||||
false, "7":
|
||||
false, "7":
|
||||
"{7", "":"{999199", "7":"k7", "6":
|
||||
"{7", "7":
|
||||
"{7",
|
||||
false, ""
|
||||
1
corpus/178d0588dcd5814165b877e2947fa287fc4c20db
Normal file
1
corpus/178d0588dcd5814165b877e2947fa287fc4c20db
Normal file
@@ -0,0 +1 @@
|
||||
[ 0 ]
|
||||
56
corpus/17a03cd5e0b5cf46eecbc1b08d9f73995f0c1592
Normal file
56
corpus/17a03cd5e0b5cf46eecbc1b08d9f73995f0c1592
Normal file
@@ -0,0 +1,56 @@
|
||||
{"JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ;;" : -5,"88" :-8,"8nf" : 8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
,"88" :-8,"8nf" : 8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<EFBFBD>
|
||||
v
|
||||
66
corpus/187f084ffecf55e4f0f1d38c2367150ec61d7ced
Normal file
66
corpus/187f084ffecf55e4f0f1d38c2367150ec61d7ced
Normal file
@@ -0,0 +1,66 @@
|
||||
[[5,[5,7.7,7E-575,775,[5,775,[5,7E-5,7.777E-5,[5,775,[5,7E-5,7.777E-5,[5,7.5,7.75,775,[5,7E-5,7.777E-5,[5,7.75,775,[5,7E-575,775,[5,775,[5,7E-5,7.777E-5,[[[5,7.75,775,[5,7E-575,775,[5,775,[5,7E-5,7.777E-5,[5,7.5,7.75,775,775,[5,7E-575,77.75,775,[5,7E-575,775.75,775,[5,7E-575,775,[5,775,[5,7E-5,7.777E-5,[5,4.5,7.75,775,775,[5,7E-575,77.75,7757E-5,[5,7.5,7.75,[5,7E-575,77.75,775,[5,7E-575,775575,5,7.5,7.75,[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-3,[8,[[41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-3,[8,[[41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ 5,[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[
|
||||
[[-41.8,[8,8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-41.8,[8,8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[7,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[ [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[-41.8,[8,[8,[[[1.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[5,7E-5,7.7,[
|
||||
|
||||
-611111110,0,[
|
||||
|
||||
|
||||
|
||||
-61111112111111110,[
|
||||
|
||||
[true,
|
||||
-61211115,5,7.7775,775,[5,7E-5,7.777E-5[5,7E-575,7-
|
||||
85
corpus/188ffcda306998895167f26c40766d38fcf1b287
Normal file
85
corpus/188ffcda306998895167f26c40766d38fcf1b287
Normal file
@@ -0,0 +1,85 @@
|
||||
[33366
|
||||
,0,366
|
||||
,0,[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-82,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},7,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[[ 8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-48,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,39990999999,999099999,8,9999999049999,{},{},[[false, [[false, in":},
|
||||
{},5,[3<> -4e55,33
|
||||
136
corpus/191e8e030fb0b91856c586934c2b6cd28bb84abe
Normal file
136
corpus/191e8e030fb0b91856c586934c2b6cd28bb84abe
Normal file
@@ -0,0 +1,136 @@
|
||||
[[2,
|
||||
2,2,
|
||||
|
||||
{},{},{},
|
||||
[[{},[{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{}]],[[[
|
||||
{ },[
|
||||
[[[[[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
|
||||
]],[[
|
||||
|
||||
]],[[[
|
||||
{ },[
|
||||
[[[[[[[[
|
||||
|
||||
]],[[[
|
||||
{ },{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},[
|
||||
[[[[[[[{ },[[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
|
||||
|
||||
},[{}
|
||||
|
||||
]],[[[
|
||||
{ },
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4
corpus/19b9204c7ef4de65820af76c8f02d62ca1915a0c
Normal file
4
corpus/19b9204c7ef4de65820af76c8f02d62ca1915a0c
Normal file
@@ -0,0 +1,4 @@
|
||||
[[[ [[0,0,[11201111111112111111110,5,[
|
||||
|
||||
[[],[],[{">>>>>>>>>>>>>>>>>>>>Y>>>>>>>>>[],[[],[?],[[],],[[],[3<>>>>>>>>>>>>?>;":["a",
|
||||
43333333333333,[[[[{"m in": 58, "ma0min": -528 }]],[[[[[{ "min":58, "mn": -52}]],[]]],[[[[]],[[[[[{ "mi": -528 }]],[[f
|
||||
4
corpus/1a2656a1c0dd5c1c9b90379753e785d08a064125
Normal file
4
corpus/1a2656a1c0dd5c1c9b90379753e785d08a064125
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
[[0,0,[112011111111112111111110,5,[
|
||||
|
||||
[[],[],[{">>>>>>>>>>>>>>>>>>>>Y>>>>>>>>>[],[[],[?],[[],[],[[],[3>>>>>>>>>>>>>?>;":["a",
|
||||
91
corpus/1b5d52b66734ba97cd75968a66aeda309578b5ce
Normal file
91
corpus/1b5d52b66734ba97cd75968a66aeda309578b5ce
Normal file
@@ -0,0 +1,91 @@
|
||||
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-222222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[899,
|
||||
9,0,3,0,3,99,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{}
|
||||
,[[[[{},{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[78,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,39990999,99999990999909999,9990999998,9919999999,999099999,8,99199999,9999909,8,991999999,99909999,999099999,8,9999999049999,8,991999999,4e55,33
|
||||
1
corpus/1d5ba450c2e05106c90a7585480bad0ea3779f8c
Normal file
1
corpus/1d5ba450c2e05106c90a7585480bad0ea3779f8c
Normal file
@@ -0,0 +1 @@
|
||||
[[[[[[[[ true,true,[ true, true,true,true,[ [[[[[[[[[[[[[true,true,[ true,true, true
|
||||
1
corpus/1d803706c6249ba11603188d4fc3f66ef8b19d91
Normal file
1
corpus/1d803706c6249ba11603188d4fc3f66ef8b19d91
Normal file
@@ -0,0 +1 @@
|
||||
"\t\t\\\t\
|
||||
1
corpus/1d8743e5bdbbd9921cb3fa4c0e00c29042d6ea26
Normal file
1
corpus/1d8743e5bdbbd9921cb3fa4c0e00c29042d6ea26
Normal file
@@ -0,0 +1 @@
|
||||
"Lafa\ufa2dudu\udafa\ufa2f
|
||||
1
corpus/1dd999c86ffa6b071256a262a4e220ea8a9fc75f
Normal file
1
corpus/1dd999c86ffa6b071256a262a4e220ea8a9fc75f
Normal file
@@ -0,0 +1 @@
|
||||
{";;" : -6,"8[%5,5,5,[-5," : -8,"" : -8,"8" : 8,"" : -8,"8" :-9,"8" : 8,"" : -8,"" : -6,"8" : 8,"" :8,"8 8
|
||||
1
corpus/1de81aabbf4e565daeb70f5fbc1c2accd136c484
Normal file
1
corpus/1de81aabbf4e565daeb70f5fbc1c2accd136c484
Normal file
@@ -0,0 +1 @@
|
||||
{"3b\u0435\u043a\u043a\u044e\u043f04Ef\u043e\u047e\u043f0\u0430) \u04130\u043c\u041f\u043e\u043b\u041f\u043e\u043b\u043e\u048f0\u0430 \u04135^" }
|
||||
BIN
corpus/1e3dca781bb5ace1736f4c304a5e51604bd8ec4b
Normal file
BIN
corpus/1e3dca781bb5ace1736f4c304a5e51604bd8ec4b
Normal file
Binary file not shown.
1
corpus/1f05dda29b07daba0470308476885355d5b269a0
Normal file
1
corpus/1f05dda29b07daba0470308476885355d5b269a0
Normal file
@@ -0,0 +1 @@
|
||||
"\ud83d
|
||||
2
corpus/1f54cd3f6ba4b2e1ddac8d030f858d3b595cd2a8
Normal file
2
corpus/1f54cd3f6ba4b2e1ddac8d030f858d3b595cd2a8
Normal file
@@ -0,0 +1,2 @@
|
||||
[[333336666666333,66666666633333333333,6666666666604000,666666663333333333333333,66666666666333,60043333333333333,6666664666604000,6666666663366666604000,666666666333333333,66666666666040003333332,[[[[[[[[[[[[
|
||||
true[66"04
|
||||
1
corpus/1f9babd4c2dcff63d7669033274f13aa898c1505
Normal file
1
corpus/1f9babd4c2dcff63d7669033274f13aa898c1505
Normal file
@@ -0,0 +1 @@
|
||||
11111666666666666666666666 v66
|
||||
BIN
corpus/1fddcaed36a7c6887bbaa8b1315e51abb1e4e411
Normal file
BIN
corpus/1fddcaed36a7c6887bbaa8b1315e51abb1e4e411
Normal file
Binary file not shown.
1
corpus/2094db7ce0833ab586554c97cec9f4b89c7a6849
Normal file
1
corpus/2094db7ce0833ab586554c97cec9f4b89c7a6849
Normal file
@@ -0,0 +1 @@
|
||||
[[[ true,[[[[true, true,true,true,[ true,[[[[[["\"\b\b\f[\n\"\\!\/\b\\50\"\"&\\u30af\u0061-u6\u0030\\u30af\u0061-u6\u000af\u0061-u6\"6\u003061-u6\"\\u30af\u0061-u@:6\u0030\\u30af61-u6\"6\u003061-u6\"\\u30af\u0061-u:6\u0030\\u30af\u0061-u6\u0030\u30af\u0061-u6\"630\u30af\u0061-u6\"\u30af\u0061-u6\"\\u30af\u0061-u6\u0030\\\\u60ar]\/\6f\\/][99\f",8,9999
|
||||
1
corpus/20b2948f5d7ea98d9d2986a8a4eac2323ad8c938
Normal file
1
corpus/20b2948f5d7ea98d9d2986a8a4eac2323ad8c938
Normal file
@@ -0,0 +1 @@
|
||||
{"" :"",:[":
|
||||
7
corpus/211257f4a05450a36e548c9f14163e0b8abd4404
Normal file
7
corpus/211257f4a05450a36e548c9f14163e0b8abd4404
Normal file
@@ -0,0 +1,7 @@
|
||||
[[[{},{}, [[[[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[[[ true,[[[[true, true,true,true,[ true,[[[[[["\"\b\b\f[\n\"\\!\/\b\\50\"\"&\\u30af\u0061-u6\u0030\\u30af\u0061-u6\u000af\u0061-u6\"6\u003061-u6\"\\u30af\u0060af61-u6\"6\u003061-u6\"\\u30af\u0061-u:2\u0030\\u30af\u0061-u6\u0030\u30af\u0061-u6\"630\u30af\u0061-u6\"\u30af\u0061-u6\"\\u30af\u0061-u6\u0030\\\\u60af\u0061-u6\u0030\u30a0061-q6\u000af\u0061-u6\"6\u000af\u0061-u2\u0030\\u30061-u6\"6\u00306Y1-u6\"\\u30af\u0061-u@:6\u0030\\u30af61-u6\"6\u003061-u6\"\\u30af\u0061-u:6\u0030\\u30af\u0061-u6\u0030\u30af\u0061-u6\"630\u30af\u0061-u6\"\u30af\u0061-u\"\u30af\u0061-u6\"\\u30af<61><66><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>u6\"6\u000af\u0061-u2\u0030\\u30061999[[-41.8,[-41.8,[8,[8,<2C>[[[[-41.3345,3352234e5,334.e55,334 -3,5,[-" : 8,"" : -8"8[[ [[[
|
||||
[
|
||||
[[-41.8,[8,[8,[[[
|
||||
[8{},[-[
|
||||
81
corpus/22769e29888f2b71619db9a208c80a1769a17f3d
Normal file
81
corpus/22769e29888f2b71619db9a208c80a1769a17f3d
Normal file
@@ -0,0 +1,81 @@
|
||||
[ {";;" :
|
||||
8,"8;"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1
corpus/2349680f023e847e1d8761618801ffb85a75ba21
Normal file
1
corpus/2349680f023e847e1d8761618801ffb85a75ba21
Normal file
@@ -0,0 +1 @@
|
||||
"\udded\\udd
|
||||
BIN
corpus/23d4988fcda84a29ed355026574f5b3c55e97eb9
Normal file
BIN
corpus/23d4988fcda84a29ed355026574f5b3c55e97eb9
Normal file
Binary file not shown.
1
corpus/24ad730c425c23683f523101afe3a9001534d8a2
Normal file
1
corpus/24ad730c425c23683f523101afe3a9001534d8a2
Normal file
@@ -0,0 +1 @@
|
||||
"10D15\uDDAD\uDDFD
|
||||
1
corpus/24c116d0e826562f3ef5b70651dbfe0a12390b58
Normal file
1
corpus/24c116d0e826562f3ef5b70651dbfe0a12390b58
Normal file
@@ -0,0 +1 @@
|
||||
16666666666611111111111111111,1
|
||||
62
corpus/2512ac313d94ece24e2b0a01a67279ad03e40439
Normal file
62
corpus/2512ac313d94ece24e2b0a01a67279ad03e40439
Normal file
@@ -0,0 +1,62 @@
|
||||
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
|
||||
|
||||
-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
9777E-1,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},2,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[8,[8,[[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, "ffa2ffa\udafa\udffad@faa\udff41.8,[8,[8,[[[
|
||||
56
corpus/2608cf2798ad10a991810f6c2d792b745b82c520
Normal file
56
corpus/2608cf2798ad10a991810f6c2d792b745b82c520
Normal file
@@ -0,0 +1,56 @@
|
||||
4
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2
corpus/26a62ea3d50194a7fb0bc182e6c5dddb428b62b4
Normal file
2
corpus/26a62ea3d50194a7fb0bc182e6c5dddb428b62b4
Normal file
@@ -0,0 +1,2 @@
|
||||
4 <20><>
|
||||
<EFBFBD>
|
||||
BIN
corpus/2711a301accc7b1c726f37ba631e226c4e77e394
Normal file
BIN
corpus/2711a301accc7b1c726f37ba631e226c4e77e394
Normal file
Binary file not shown.
BIN
corpus/27b857cc4babd44a9b564622fad4d65070ff0c87
Normal file
BIN
corpus/27b857cc4babd44a9b564622fad4d65070ff0c87
Normal file
Binary file not shown.
77
corpus/28211df1e2937108db5f74a5e8ca86f668279a27
Normal file
77
corpus/28211df1e2937108db5f74a5e8ca86f668279a27
Normal file
@@ -0,0 +1,77 @@
|
||||
[[[
|
||||
]],[
|
||||
|
||||
[[[
|
||||
|
||||
]],[
|
||||
[[[[
|
||||
]],[
|
||||
[[
|
||||
[[
|
||||
]],[
|
||||
|
||||
|
||||
]],[
|
||||
[[[[[[
|
||||
]],[]]]]],[[[[]],[[[[[],[]]]],[[[]],[]]]]]],[]],[[[[[[]]],[[[]],[[[[[[[],[[[[[[]],[[[[],[[[]]]]],[],[[]]],[],[[[[[],[[[[[]],[[[[[]],[[[],[[[]]]]],[]]]],[[[[[]],[
|
||||
|
||||
|
||||
]],[
|
||||
|
||||
|
||||
[[[]]]]],[[[[]],[[[[[],[]]]],[[[]],[]]]]]],[]],[[[[[[]]],[[[]],[[[],[[[[[[]],[[[[],[[[]]]]],[],[[]]],[],[[[[[],[[[[[]],[[[[[]],[[[],[[[]]]]],[]]]],[[[[[]],[]]]]]],[]],[[[],[[[[],[[[[],[[[[],[[]],[
|
||||
|
||||
|
||||
]],[
|
||||
|
||||
[[
|
||||
[[
|
||||
]],[
|
||||
|
||||
|
||||
]],[
|
||||
]],[
|
||||
|
||||
|
||||
]],[]
|
||||
|
||||
|
||||
]],[]],[]
|
||||
|
||||
|
||||
]],[
|
||||
[[[[[
|
||||
|
||||
]],[
|
||||
[[
|
||||
|
||||
]],[
|
||||
[[[[[[
|
||||
]],[
|
||||
|
||||
|
||||
]],[
|
||||
[[[[[
|
||||
|
||||
]],[
|
||||
[[[[[
|
||||
|
||||
]],[[[[
|
||||
|
||||
]],[[[
|
||||
[[
|
||||
]],[
|
||||
|
||||
|
||||
]],[
|
||||
|
||||
[[
|
||||
[[
|
||||
]]]],[
|
||||
]],[
|
||||
|
||||
|
||||
]],[]],[
|
||||
[[
|
||||
|
||||
]]
|
||||
1
corpus/282de371a77887b4552ba620e05e8819c922516b
Normal file
1
corpus/282de371a77887b4552ba620e05e8819c922516b
Normal file
@@ -0,0 +1 @@
|
||||
[-7,-0,-7,-<2D><><EFBFBD>-0,7"3
|
||||
1
corpus/2842ed56a1a42af5202956bd180a29f4e036acbd
Normal file
1
corpus/2842ed56a1a42af5202956bd180a29f4e036acbd
Normal file
@@ -0,0 +1 @@
|
||||
{"":"_________________________________@@@@ffa\udafa\udffa2fa[-401.
|
||||
1
corpus/28cd321cdfc852db80e0682d415eef1a32e0f531
Normal file
1
corpus/28cd321cdfc852db80e0682d415eef1a32e0f531
Normal file
@@ -0,0 +1 @@
|
||||
[[[] ] ][
|
||||
1
corpus/297744dd2b6defed53ecf5e3e2a8470e87ee1028
Normal file
1
corpus/297744dd2b6defed53ecf5e3e2a8470e87ee1028
Normal file
@@ -0,0 +1 @@
|
||||
[null,[0,null,null,null,null,null,[1,[1,[null,1,null,null,null,null,null,[0,null,null,null,null,null,[0,[1,[0,null,null,null,null,null,null,null,[0,null,null,null,null,{"\uDA9D\uDDDDux\uDA9D\uDDDdux\uDA9D\uDDA9D\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu\uDA9D\uDDA9D\uDA9D\uDDDDD-2Dux\uDA9D\uDDDdDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDADdux\uDA9D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA4D\uDDA9D\uDA9D\uDDDDDDux\uDA9D\uDDDdDDA9D\uDA9D\uDDDDDDux9D\uDA9D\uDDDDDDux\uDA9D\uDDDduxux\uDA9D\uDDDdDDDux\uDA9D\uDDDdu|\uDA9D\uDDA9D\uDA9D\uDDDDDnull,[1,[1,null,null,null,null,null,[0,[1,[0,null,1nulll,,[1
|
||||
5
corpus/29791a14a0db33dea65632cc02d446aaf9c98cc5
Normal file
5
corpus/29791a14a0db33dea65632cc02d446aaf9c98cc5
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
[[0,0,[112011111111112111111110,5,[
|
||||
|
||||
[[],[],[{">>>>>>>>>>>>>>>>>>>>Y>>>>>>>>>[],[[],[?],[[],[],[[],[4>>>>>>>>>>>>>?>;":["a",
|
||||
43333333333333,[[[[{ "min": -5}]],[[[[333333,3333,3303337333
|
||||
9
corpus/2a1ad84d7157ffa9a7ad2adb7a8f9de36f4913b2
Normal file
9
corpus/2a1ad84d7157ffa9a7ad2adb7a8f9de36f4913b2
Normal file
@@ -0,0 +1,9 @@
|
||||
[[[
|
||||
]],[
|
||||
|
||||
],[[[
|
||||
]],[
|
||||
[[
|
||||
[[
|
||||
]],[
|
||||
],[[[[[[[],[[[[[[],[[[]]]]],[][]
|
||||
BIN
corpus/2a2b84e9efdf5ca167294862f238e419f988ae6e
Normal file
BIN
corpus/2a2b84e9efdf5ca167294862f238e419f988ae6e
Normal file
Binary file not shown.
7
corpus/2a73b55c9b9b14781cfcdb571e09c772a1d4fcf6
Normal file
7
corpus/2a73b55c9b9b14781cfcdb571e09c772a1d4fcf6
Normal file
@@ -0,0 +1,7 @@
|
||||
[4,[5,[5,[4,[5,[5,[5,55,5,[[5,[4,[5,[5,[5,5,[5,[5,[[5,[5,[415,[4,[5,[5,[3,[5,[5,[5,5,[[2,[4,[5,[[5,555,5,[[5,[4,[5,[5,[5,5,[5,[5,[[5,[5,[415,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
false,[5,n,[5,
|
||||
1
corpus/2ace62c1befa19e3ea37dd52be9f6d508c5163e6
Normal file
1
corpus/2ace62c1befa19e3ea37dd52be9f6d508c5163e6
Normal file
@@ -0,0 +1 @@
|
||||
"
|
||||
1
corpus/2ad59d7533490ba15835d77910b8dfb338433291
Normal file
1
corpus/2ad59d7533490ba15835d77910b8dfb338433291
Normal file
@@ -0,0 +1 @@
|
||||
["\"\b\b\f\n\"\\\/\b\\\/:b\b\f\\nb\f\n\r\/\f\n\r\/\\r\/\f\n\rb\\\f\n\r\/\f\n\r\r/\f\n\r\/\\r\/\f\n\r\\<5C>\f\n\r\/\f\n\r\/\\r\\\/\b\b\f\n\"\\\/\b\\\/\b\b\f\n\"\\\/f\n\"\\\/\b\\\/:b\b\f\n\"\\\/\b\b\f\n\r\/\f\n\r\/\\r\/\f\n\r\\b\f\n\r\/\f\n\r\\/\/\f\n\r\7\b
|
||||
BIN
corpus/2b843c7f886fc539071cf413143d61dbc82fdcbd
Normal file
BIN
corpus/2b843c7f886fc539071cf413143d61dbc82fdcbd
Normal file
Binary file not shown.
1
corpus/2c28add44bb3cde640672d45347aaccc7f5fe4b8
Normal file
1
corpus/2c28add44bb3cde640672d45347aaccc7f5fe4b8
Normal file
@@ -0,0 +1 @@
|
||||
{"4%%%%%%%%%%%%%%%%%%%%%%$$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"4%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%e%%$%%%%%%%%":{"0%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"3%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%0%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%,%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"4%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%e%%$%%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"3%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%,%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%+$$$$*$%%%%%%%%%%%%%%%%%%%%%%e%%$%%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$5%%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%":{"5%%%%%%%%%%%%%%%%%%%%%$$$$$$$$$%%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%":{"4%%%%%%%%%%%%%%%$%%%%%%%%":{"4%<%%%%":{"%%%%%%%%$$%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%$%%%%%%%%":{"3%%%%%%%%%%%%%%%%%%%%%$$$$$$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%":{"0%%%%<<<<<<<<<<<<%%%%%%":{"4%%%%%%%%%%%%%%%$%%,%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$<<<<<<<<<<%%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%%%%%%%%%%%%%%%%$$$$.$$%%'%%%%%%%%$$$$*$%%%%%%%%%%%%%%%%%%%$%%%%%%%%":{"4%%%%%%$$$$$$$$$%$$%%%%%%%%%%":{"%%%%%%%%$$%%":{"4%%%%%%%%%%%%%":{"%%%%%%$$$$$%$$$$$$$$$%%%%%$$$$$$$$$%$$$$$$$$$"%%":{"% %%7
|
||||
1
corpus/2c6efbfcfcbbffa98984d9b23ace94ad9f53abd9
Normal file
1
corpus/2c6efbfcfcbbffa98984d9b23ace94ad9f53abd9
Normal file
@@ -0,0 +1 @@
|
||||
[[ [[[[[[[[[[{"n<>
|
||||
35
corpus/2c8c1df70ecde2ada66b916de8a03fb7126a1268
Normal file
35
corpus/2c8c1df70ecde2ada66b916de8a03fb7126a1268
Normal file
@@ -0,0 +1,35 @@
|
||||
{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"'":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[{"":[[4,
|
||||
2,2,
|
||||
[{},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[
|
||||
|
||||
]],[[{},[{},[{},
|
||||
{},
|
||||
{},{},
|
||||
{},[{},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},[{},
|
||||
{},{},{},
|
||||
{},[{},
|
||||
[[
|
||||
|
||||
91
corpus/2dfd5ce72acc07ccafd236f3214884e8288548d3
Normal file
91
corpus/2dfd5ce72acc07ccafd236f3214884e8288548d3
Normal file
@@ -0,0 +1,91 @@
|
||||
[[[{},{}, [[[{},{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-22222222222222222222222222222222222222222222222222222222222222222222241.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[7,[[[[41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[899,
|
||||
9,0,3,0,3,99,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[0,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,8,[8,[8,[[[[[-41.8,[7E-5,7E-5,3E8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8.8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[-836,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{}
|
||||
,[[[[{},{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[41.8,[8,[8,[[[[ [[[ [[-20.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[8,[8,[[[[[-41.8,[8,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-20.8,[8,[8,[[1.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41,{},[[false, [[false, [[[{},8,[-41.8,[8,[8,[[[[[-41.8,[8,[8,[[[[ [[[ [[-41.8,[3,[8,[[[[ [[[
|
||||
[[-418,[8,[[[
|
||||
[[-41.8,[8,[8,
|
||||
[[-41.8,[-41.8,[5,[8,[8,[[[[[-41.8,[78,[
|
||||
[[-418,[8,[[[[[[-41.8,[8,[8,[[[[ [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false, [[[{},8,[-41.8,[8,[8,8,[8,[[[{},{}, [[[{},{},[[false, [[false, [[[{},8, [[[
|
||||
[[-41,{},[[[[{},{}, [[[{},{},[[false, [[false,34e55,335223334e55,33e5,334e55,3e5,3999099999,8,99999990999909999,9990999998,9919999999,999099999,[-41,{},[[[[{},{}, [[[{},99999,99909999,999099999,8,9999999049999,8,@91999999,4e55,33
|
||||
1
corpus/2e60f5c4467105083c6ac3c0b0a6bc12be120d5a
Normal file
1
corpus/2e60f5c4467105083c6ac3c0b0a6bc12be120d5a
Normal file
@@ -0,0 +1 @@
|
||||
{"7":"{7@", "7
|
||||
BIN
corpus/2e79385440e9ab00edf3260b1de359b9305ccb2b
Normal file
BIN
corpus/2e79385440e9ab00edf3260b1de359b9305ccb2b
Normal file
Binary file not shown.
1
corpus/306c4a132cc0369bf495655379aa5d3fd5d3b21c
Normal file
1
corpus/306c4a132cc0369bf495655379aa5d3fd5d3b21c
Normal file
@@ -0,0 +1 @@
|
||||
"\udded\<5C>udc<64>)<
|
||||
1
corpus/30fc0fa0d099456cf49b6a7e25005439ede3fb5e
Normal file
1
corpus/30fc0fa0d099456cf49b6a7e25005439ede3fb5e
Normal file
@@ -0,0 +1 @@
|
||||
"G݂EݝނAݝ݂Ν݂Ν݂ނAݝ݂Ν݂Ν
|
||||
1
corpus/315a98a099f1d677e8e2ec451df2a1b31db2fd9d
Normal file
1
corpus/315a98a099f1d677e8e2ec451df2a1b31db2fd9d
Normal file
@@ -0,0 +1 @@
|
||||
[[[[[[[[ true,true,[ true, true,true,true,[ [[[[[[[[[[[[[[[[[[ true,true,true,[ true,true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[ true,true,[ true,true, true,true,true,[ true,[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,[[[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[[[[[true,true,true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[ true,true,[ true, true,true,true,[ [[[ true,true,true,[ true,true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[ true,true,[ true,true, true,true,true,[ true,[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,[[[[[[[[[[ true,true,[[ true,true,[[[[[ true,true,true,[ true,[[true,true,[ true,true, true,true,true,[ true,[[[ true,true,[[ true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[[[[[[[[[ true,true,true,[ true,[[[[[[[true,true,[ true,true, true,true,true,[ true,[[[[[[[[[[ true,true,true,[ true,[[[[[[[[[[[true,true,[ true,true, true,tzrue,[]]
|
||||
1
corpus/3247a622d0d655ef64b1eb2d91b85e0a65960799
Normal file
1
corpus/3247a622d0d655ef64b1eb2d91b85e0a65960799
Normal file
@@ -0,0 +1 @@
|
||||
[[] ]][
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user