From a68f9712f78c47d8b082d660ddc8c748e223cd9d Mon Sep 17 00:00:00 2001 From: Ben Luddy Date: Fri, 3 May 2024 09:01:00 -0400 Subject: [PATCH 1/2] Add CBOR fuzz test for unreasonable allocations during decode. --- test/fuzz/cbor/cbor.go | 90 +++++++++++++++++++++++++++++++++++-- test/fuzz/cbor/cbor_test.go | 36 +++++++++++++++ 2 files changed, 122 insertions(+), 4 deletions(-) create mode 100644 test/fuzz/cbor/cbor_test.go diff --git a/test/fuzz/cbor/cbor.go b/test/fuzz/cbor/cbor.go index 0e1eace1ab4..c28df1ef11d 100644 --- a/test/fuzz/cbor/cbor.go +++ b/test/fuzz/cbor/cbor.go @@ -17,8 +17,90 @@ limitations under the License. package cbor import ( - // Adds this package and its dependencies to the dependency chain of k8s.io/kubernetes - // without affecting the size of kube binaries. Once fuzz targets are added here, this will - // become a real import. - _ "k8s.io/apimachinery/pkg/runtime/serializer/cbor" + "fmt" + goruntime "runtime" + + "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" + "k8s.io/apimachinery/pkg/runtime" + "k8s.io/apimachinery/pkg/runtime/schema" + "k8s.io/apimachinery/pkg/runtime/serializer/cbor" ) + +var ( + scheme = runtime.NewScheme() + serializers = []cbor.Serializer{ + cbor.NewSerializer(scheme, scheme), + cbor.NewSerializer(scheme, scheme, cbor.Strict(true)), + } +) + +// FuzzDecodeAllocations is a go-fuzz target that panics on inputs that cause an unreasonably large +// number of bytes to be allocated at decode time. +func FuzzDecodeAllocations(data []byte) (result int) { + const ( + MaxInputBytes = 128 + MaxAllocatedBytes = 16 * 1024 + ) + + if len(data) > MaxInputBytes { + // Longer inputs can require more allocations by unmarshaling to larger + // objects. Focus on identifying short inputs that allocate an unreasonable number + // of bytes to identify pathological cases. + return -1 + } + + decode := func(serializer cbor.Serializer, data []byte) int { + var u unstructured.Unstructured + o, gvk, err := serializer.Decode(data, &schema.GroupVersionKind{}, &u) + if err != nil { + if o != nil { + panic("returned non-nil error and non-nil runtime.Object") + } + + return 0 + } + + if o == nil || gvk == nil { + panic("returned nil error and nil runtime.Object or nil schema.GroupVersionKind") + } + + return 1 + } + + for _, serializer := range serializers { + // The first pass pre-warms anything that is lazily initialized. Doing things like + // logging for the first time in a process can account for allocations on the order + // of tens of kB. + decode(serializer, data) + + var nBytesAllocated uint64 + for trial := 1; trial <= 10; trial++ { + func() { + defer goruntime.GOMAXPROCS(goruntime.GOMAXPROCS(1)) + var mem goruntime.MemStats + goruntime.ReadMemStats(&mem) + + result |= decode(serializer, data) + + nBytesAllocated = mem.TotalAlloc + goruntime.ReadMemStats(&mem) + nBytesAllocated = mem.TotalAlloc - nBytesAllocated + + }() + + // The exact number of bytes allocated may vary due to allocations in + // concurrently-executing goroutines or implementation details of the + // runtime. Only panic on inputs that consistently exceed the allocation + // threshold to reduce the false positive rate. + if nBytesAllocated <= MaxAllocatedBytes { + break + } + } + + if nBytesAllocated > MaxAllocatedBytes { + panic(fmt.Sprintf("%d bytes allocated to decode input of length %d exceeds maximum of %d", nBytesAllocated, len(data), MaxAllocatedBytes)) + } + } + + return result +} diff --git a/test/fuzz/cbor/cbor_test.go b/test/fuzz/cbor/cbor_test.go new file mode 100644 index 00000000000..98390d67fef --- /dev/null +++ b/test/fuzz/cbor/cbor_test.go @@ -0,0 +1,36 @@ +/* +Copyright 2024 The Kubernetes Authors. + +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. +*/ + +package cbor_test + +import ( + "testing" + + "k8s.io/kubernetes/test/fuzz/cbor" +) + +// FuzzDecodeAllocations wraps the FuzzDecodeAllocations go-fuzz target as a "go test" fuzz test. +func FuzzDecodeAllocations(f *testing.F) { + f.Add([]byte("\xa2\x4aapiVersion\x41x\x44kind\x41y")) // {'apiVersion': 'x', 'kind': 'y'} + f.Fuzz(func(t *testing.T, in []byte) { + defer func() { + if p := recover(); p != nil { + t.Fatal(p) + } + }() + cbor.FuzzDecodeAllocations(in) + }) +} From 7baa866cf2d1e6616a2c75888d6d07da315244ae Mon Sep 17 00:00:00 2001 From: Ben Luddy Date: Thu, 20 Jun 2024 12:15:56 -0400 Subject: [PATCH 2/2] Add interesting inputs to CBOR decode seed corpus. --- .../cbor/testdata/fuzz/FuzzDecodeAllocations/000807b52481dae3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0061fa19679be87a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/00833b633bee1a44 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/00a9e820b4bc2961 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/00cd3d7f48ba27f8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/00eac722b9e18132 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0123042ff916aa07 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0155c3b9823786c1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/01565827aba3c17e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/015c6785ec6f21a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/01971d6f1195d5c4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/019d088b0b52ee51 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/01adb020b9b0adcf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/01d29abf5239ae2b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/021310d2523fc753 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/02218df1da65a57d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/022ee388f166fe8c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/024f06a214b7b46a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/02b31453168e4807 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/02d174b75863f502 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/030eac6dc1077232 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0316a3d448ba63eb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/032a948e21e5eada | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/032ff502665d340c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/034e2f7daa3a5eda | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/03665273be54d94e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/037c1228970e2af7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/04076c771b933181 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/040d979e62625d33 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0446aae350833264 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/046444026be59095 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/048415c326f3744b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/04971895ddccadde | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/04fb86a49a32c851 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/05758249dda61b55 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/057990b980604f49 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/058d48efab3bd0ba | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/05cee13c8c223d0a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/05d7f4074cab8c87 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/05f74c351e3b7300 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/06027f6cef50b60c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0622c074d8496e4b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/06400d50ee9156c1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/06d4ca5da82e88e2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/06ecd2ae4c12c117 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/07078f00e448f6b6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0726373ce1d77dc1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0797e86c900b4725 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/07afe4a8c9624fd0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/07c96f6b389dc56c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/07d2eb30c88dc1bf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/08143bd289bf43ff | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/084011b5eacda5ba | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/08567900dff9a38b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/086934e2def8f960 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0894b6d0227b1c27 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/08ab9ede3da9b81e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/08b5005ef5ee3418 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/09199ac2674d1f9b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/095b593f87f4119c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/096be4d6bff38a90 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/09c01625299a6cc3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0a4ea61fbc589ffc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0aeae2e710ef977d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0b10abfae0a3f193 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0b5133584a0ebcfc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0b6c8d7f641106f3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0b6efc6272585b39 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0bd4659e514f7549 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0c0757ec3098e0dc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0c1ecca1593a8f91 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0c27b17b6ccd98b0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0c432ed41517e793 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0c8ac07e440fe9ae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0ca523556c48488c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0cfc70c67b86ce4f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0d1ab1f3874df95f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0d6459169fc0e922 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0d6cb9af10ebd9c5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0d7efebfbe993205 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0d86a53c75eae3f9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0db21fe48066525e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0de844a5eb1051d5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0e151544729b7a88 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0e317f6a5078cced | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0e74c62ab1ea7f03 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0eb92c00916f8eaa | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0ebdd82408a7cf69 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0ee0509a417bf9bb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0ee9c2ff2cd2bf51 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0eea516fe5403761 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0f33c79b262b0889 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0f3530f25bd10aca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0f4a95d1bfb247a1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0f8b85bed559a5c6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0fca77f3dace92de | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/0fe970c56f946286 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1027a6c4c4284624 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/106d6a4185355582 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1073dd5af1ca163c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1092721f8424f12e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/10d1b0ee22c38311 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/10feb66562c7be5d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/111575bb85261a49 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/118f7faab99c7197 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/11a4b83263841094 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/123577a397cefed8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/124344d723e96d53 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/12e462996607df93 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/130f288fa770ee96 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/133056c8023cc706 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/13499635388b5379 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1357bb84529350a6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/13d98f91c618ce4d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/13e270736e830e97 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/140cf1ca813c0147 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/147e407314b383db | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/14a2e97b07531ce2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/14e7f90d8f7e4995 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/152996d69f524d05 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1532d4b326f16032 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1572039e7a331ee8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1598a161948dde4e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/15b86882c95bb297 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/15d34aa7a1bd56f6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/16154c1766c9ae1e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/16b92a117372fffb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/16eaaa956764dcd0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1712d67181358055 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/174d198e9931a939 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/179ca80ecf28bcb9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/17bb062c8c283897 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/182170b4179c2fe2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/182616785251e990 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/18560d337955514b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/188aad383b55e2e2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/19663275f675484e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/19785b3eec389fe1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/19a84805b56aa592 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/19ba0c4305ebf169 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/19ba40d397da3e7b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/19f1b23c40597ff3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/19f94ee780767a12 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1a4701d9f099e832 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1af1a16279b3f910 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1b364cc32ec7d5f2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1b3cac2bc4812f7f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1b76301aa0dca2a2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1b80eff1199317ae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1bba1a4f81a6d82d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1bd1ab9b27cc329c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1c2e7bb09d5685e8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1c56181179783fb4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1c7c3d8570b61b92 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1c7cf1bcdb3d961c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1c878ff2c187b7ca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1cb6dfc21ff40ee4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1d559614d5eeb563 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1e05786a3c932b36 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1e0a00ec629a578b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1e3a1163cabc3179 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1e4f089878718782 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1e8c6d7adf692118 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1ea8740039165d7a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1eade828d10ed7ab | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1ef147cf8e5a6938 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1f69846c683e9947 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1f7247fe6fb6c863 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/1f8c609548208aed | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/200a04deff8c8345 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/204d465fdd594827 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/204e3ef83a76c9cb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/206ebbca7bdcc1b0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/210148d4e2c7937b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/214409825cf19cc3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/21633ca2563dcd1a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/21726329a6158a7d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/217a783b78414102 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2187b9aee1225752 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/21a4129d319bae08 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/22291c763b204c1e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/222e3b6161c78d79 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/223b9bc0cbcc1387 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/225c45f43aad5ba7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/22913896a268e331 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/22fd7377c8beef24 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2333ab59c236bf28 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2334786df04575bf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/23676eaff4ad7a29 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2395dd85d7ccb6d8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/23d2c1f0b9a92c9f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/23d5cd932563dbb6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/23e22eee7aa841f9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/23f8f842d686d268 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/243326edd8bb4ede | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/24389071483ab783 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/243e38770dfd29f9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/244f7cc0973e31d1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2453bca242d40fee | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/245c8b113e744453 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/245dd523f0cbede6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/248ca08163ab9221 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/24c96f5056354d6a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/24e75fd9b7adc4d7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/24e7cc53c4749a0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/24e96678c0908553 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/24ed6a6e74652663 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2526b2742c867ab3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/255c0721ecb5c907 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/25845824ea0fc0c9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/25a1058724bef878 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/25ce37320ed6d565 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/25e53e79bc531f41 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2610cf0f4784b2e1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/26148a8bb1150dc3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/265ab13e0c72bcc3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/266d51bf101060c9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/267091b0e7016f7e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/26a9ac44cfb61f81 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/26b384dba9e5ecf9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/26b5f658054ed7d2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2727279f0d86789c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/272b6e81cb289890 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/278e8c63cfd7a039 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/279ae68f7cb85a0b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/28082c8abedb7628 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2827c2f8e52a20d2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2832e945cb0a002b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/283953cd5179d2c2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2899e051c824f84a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/289d2ce1d9229efc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/29d3b5297dfaae2f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2a37be948e5bdc38 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2a8a9ca285307e5c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2a8c1124319dad18 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2ae315ca427297b0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2b0e5e46f1371255 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2b14030899009353 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2b158a9111ae2ed3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2b19d3feaf18dbb9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2b4bf0910d64ba71 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2b9912e2ad0b8396 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2babd65402e25106 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2bd7bc8b6d35dc5c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2c1d989bcbe31ab0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2c2eef9fc5ce85d4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2c5d7f4a918094a0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2cc2686cf522df71 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2d7269cbb207f748 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2e3d27c8bfea6170 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2e3df2f37626ea03 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2e4810d5fb3fad77 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2e7ec59ae9f4062c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2e92567d1c6070de | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2ea7c0e48ed4484a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2ecbe074b5ba6e99 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2ed142c514f9652e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2f24821381c60d2f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2f5d2dfffa4dad27 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2f6f3d07e43e1f5d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2f7571e1100a3859 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2f8b9c80ff96cd66 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2fa8713102ac0ce3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2fc0f6c15791cc3a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2fc63a4b2c6cc6d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/2fe2da74a8e7f876 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3020635fc76a32f8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/302359c0a751cc82 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3078d80e7981ff1c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/307fdddc14168e0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/308aab760f7f9a94 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/30f2309d0518045e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/31096504020991fa | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/310dada39b0f6930 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3112266480e854d0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3148c86e820f80d8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/31b82db92f228372 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/31c5837a9d1dd505 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/31dd2249761c03a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/31e7158eba55df57 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/31ed0e457ca5f29f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/327dab45bccbaf01 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/327f7cdebf987c96 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/32ac059a9c6561ec | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/32bc1ee774d88e6a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/331c65319a13d54c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3366179ae4d70e26 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/339b91fff35a6c7e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/33a5e5d5c8fed76d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/33b2111fd37085c8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3435c978de0d3510 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3499da07ce48c821 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/34eddc7e354243a7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/34ee8f67c26292af | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/34fb6cadebc43a61 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/351443ba18e17347 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/35253b848ce90f49 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/353626f1d58c860f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/355d60f85367e3ad | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/358abc64a2c17be7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3597a49cfb5ad976 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/35acec46207d609f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/35cab69eecbbaf1c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3653e80b6f343bb3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/367e0caa216fb108 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/368968a6be033229 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3692578a0082e389 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/36cb1d306a63309a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/36e794279c48a944 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/36f3956102eafe5f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/374dd24d3ae10325 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/377db2e487e94a90 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/37904366dd3d2868 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/379c81faf91a68f6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/37dec3363e8960d0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/37e496b9ec80875f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3837a28116827562 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/385fb72ee81a4afe | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3873d70d821cfdc5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/388303bc840ad871 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/391e59b2ef08709c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/393536f2a4eed9a0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3997c7afd0ea8408 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/39ba1bd4ee05efae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/39e97a80dbb0300a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3a05ebc1e8214e76 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3a2f45eb489fe168 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3a3fcb3446fb2ac4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3a525372904e200f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3a8187628e01af4e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3a9417e0abb8370d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3a9ef25daae0f3b3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3aa5b8096fccb900 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3afc1bb2c5c772d0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3b012f76ce3ee14b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3b40164c8229f276 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3b8ae4f1a42699db | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3b935ab68e36ab4a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3bd6f1b26939e22d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3bf3b3d01ee48757 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3c0db78cd78554b9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3c28d4b0e71f8bcc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3c2a9e434a0fa503 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3c7b4352ebaff341 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3cb48b965d201a55 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3cb6ce2b47e44bc0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3cc7a750b707f44a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3cd92cc88573b345 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3d1e133f831f92b0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3d496ed23a53e159 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3d510b1667cfc316 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3d5db21dd8bb9b1a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3d63353cebc2247e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3d790719a4cce318 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3d9a1ab314d025ab | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3db1b65899f9e8dd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3dc515382c66c228 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3dee3d6642e7a340 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3df476707d238b74 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3e1d88524d8b9719 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3e2c1feea099fd34 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3e448f9c094fc8a0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3ec5c3c0f4a5b8ce | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3ec7b234d72e6bd3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3ecbbd9d6396be3b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3f1b489ab00009ae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3f40dde107e7a3e9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3f76259456c50357 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3f95f2559e8dc64a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3fcb7688755e3e29 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/3fde41a4e8f54f3e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/400c75cbcf4d9651 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4019a82a679ac799 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/402e87b2b5d82a51 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/403a85e9561825d7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/404f9521aaf71255 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4081f0bb4d2bcd89 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/40996f0f16e02c98 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/40c0320392a833fc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/40d377a36bd4d424 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/40df7ac036ddd3dc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/40f5f99fe71e89a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4121a2fc169f511e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4214878cc4616bd7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4247adfc43600804 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/42509a360e4d2304 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4253f6deafa8db4e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4272893fef070799 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4279eb0c0a8a518d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/428d7653fe008412 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/433f0f4551be7147 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/434704d10cf83c94 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/43a329b863308626 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/43abf2c1ec3ce9e4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/43df6cfdaacaa61a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4421cbb4f7280ba9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4457bedbc5fc9009 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/44d3f66c688ad516 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/452a84ecce65a3ca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/454e89fbd34310ed | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/456bd93571108d22 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/458c2ee1136120c1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4591958e1592ba83 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/45966840b7b143e7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4609036d8498bcea | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/46698f781e22af57 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/467322a0d1b65af3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/46c4d974ab137db2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/47078f5320041022 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4713d196d421d930 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/474e80fa3944f4f7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4750a9a9b98ed0f9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/476ba1084f2429b4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4770df6aad108528 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4787c87b3c434f91 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/47a4da84b9ed0d91 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/47d443e253996534 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/47d6ef78b41bf10e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/47e373c52f631e34 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/47f335c67f5fad5d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/47fa8bbcd6f69a91 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/481f6405df9966ec | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4856bab7fc478b1a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/488f33c457838ba4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/48afe35f8e9c8d9f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/48fa05aefe3c7b6f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/491e5e07161ab448 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/498bc793242f3310 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/49c13bddc9fec7f0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/49c9e720df6c9ec3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/49de60c029f75a8e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4ad2ee2e40639c29 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4ad40f3071192686 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4b1a23ae5e6a0810 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4b1cd9ae89f97b58 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4b3609fb407caa01 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4b5aa4d461062e38 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4b5d8405b5150123 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4b6ad5012304336f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4bc903d44085f12a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4c3623c1d0e173df | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4c51e3b66d4251c3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4c7753ee83baf016 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4cad3bbcaf181fc0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4ccfcb2ad67eae7e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4d04f9388d7124f0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4d050dedcaaa666b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4d0bb6b3204f022a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4d10cfc332ce912d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4d8d30c1582e1cbd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4d9ca0eec7ba470d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4de8cd4d66afb87c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4e2e864f8f10272a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4e5354414893a9c0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4e53ca6be3cb5058 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4eb116f4334a316b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4ebca27aa4c11fee | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4f01d5c76f2c00fc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4f2a854f8c9d82d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4f62a69c96c67cb8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4f68c6cdd8f15269 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4f720093e5e15315 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4fa12c03a8ff28a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4fb70aa3f492be72 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4fc0466f237adec5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4fc1ad205717ae7d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/4fd512aa531bf245 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/500a8290e1bb006b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/509b86447970ea2a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/50b715ba543f1247 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/514b7581b9c6d801 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/51796f315c27f05d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/51db2d3a81e18590 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/52193f5c3b231e0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/524a80f1a4eb1ae3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/528992feb58eb0e6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/52cd91976d7fee72 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/52df67015e6a1add | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/532d7c16404925c4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5344dd31575442b4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5357ea842d1eb75e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/536d812579d8a6b3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5370ef5cbfee060f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5399f52ebf3c99c4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/53b1e475e434079f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/53e0ab9d8e1ab8e2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/53f09e911d523975 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5403ceecfde0e676 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/541329fed9f902af | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/54133d9804e5b1be | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5420e3dabb6d7520 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/544055e8acd39728 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/547a0666f8b9e339 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/547c953b60399802 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/54887785bc8e33f5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/54f2ec282c79657f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/551835a2faf873d7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/55231c09a6464ce9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5546fa83c8831772 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/554abee1d347276b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/555913212b9086bd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/556a94e9f3cef53f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/55d3872bf7c446fb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5647425687f4bd5e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/567b2730a37d1fc4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/56bfe79c63cbeda5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/56ca85432425e173 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/56e89149370ee703 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/56efb68c7ce71682 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/56efe78b59ecaa8f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5738ddd016fa2614 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5761f2377e74f33b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/57b20b4689441c44 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/57d1e8e70016f1c4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/57f36cb3f1bff875 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5855c88265ea57f3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5881658c02ce2d8b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/58b10583a8049a1b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/58c32ef259682410 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/58ece04b93c33d46 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5923c1326d6c3bf0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/593f2394eb7f517b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/59476ac319c0e231 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/599d493455558234 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/59ee9b8e5fa421ca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/59fac754e2128abd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5a1866a8b6d29dc3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5a8b99ecce19ef48 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5aa446f1c0b13099 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5aa5437e2615bfd9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5ad2d752d034c65a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5b735d5755c8c069 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5ba32d3229f626ea | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5baf9017a94c8b79 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5bb36a5d303d973c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5bc23bb353bd35e2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5c177fa1cd0edaf2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5c4879961f2a1d6e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5c7aeb868d45c154 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5c94fde3377bb1bd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5cb1fef0fc8a962d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5cd6398b7cf0b2ac | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5d05c4b51fb6b8e4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5d3b44f136a09487 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5d438a2a81fb3860 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5d65f3b9b623bb47 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5dccdadb4a86cf44 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5df167b4d2023234 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5e1eb2182291c20d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5e531ec13ca98ee1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5e6df8d37353b346 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5e822c067c5fcc3d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5e94764a5a144c95 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5e9ee9cfe8246d71 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5eaedc53c02b91af | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5ed6060e0b30890d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5f084c9f3b916010 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5f08f67bb1e88ee6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5f0e89415982132e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5f48ff6e09d88b2c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5fb60e5c0b5135a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5fca4702ffed2ae2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/5fca9433f7c620ec | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6020b2159d7e72ca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6058ed3f957daa0a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6066e25d13db21d0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/606b2ed27ec5e623 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6084e84acb6d29b5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/60a825de7b2c710a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/611534f827877ad9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/61b3ca8f37dc2385 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/621811f05efe7237 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/62259436c0e27f0d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/62400174b224d5c0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/62774aa60a5ec0f7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/628c32ebd5eeab51 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/629a8f7e8d62d8d1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/62d721024de4ebc2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/62f91c9bf2b2a1de | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/637b5ab5612374b9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/637b94314cf654fc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/637c8b178888b211 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/63d397eff2683574 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/63f9ea2153e3c649 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/645a66c3a0a58c9d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/64627f64fe8f1dec | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/64acd22058134cc8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/64cafadd8e741341 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/65101cc1b36d65ea | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/65260126a105f3d0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/652cdaf905e318a5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6550b67d2954f126 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6554427ffaac34e5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/65646a5df2e00873 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/65717f828798eb7d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/662ac8d0d08bcaf4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/662ebd86f577ccfc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6660ac91def274db | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/669704495295f1b9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/66ba03f3fa6228a2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6717b8b9aa8a9130 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6720e13e00594dd4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6725bf2da8820227 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/672974c98baa628f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6748bf9e58a5f486 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6757b9a74799f071 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/67fcb53963ec274d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/68096548375bcc09 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/680c0a466ba84a4d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6829292c985f56e4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6833a097862b6ede | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/687fac93a56a5086 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/68830b4d769f0819 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6898b7c8763fa190 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/68a964728967665d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/68adb5bb1634d0f4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/68c26915a5d76377 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/69a2c5ac0118392b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/69a98c01019abc3f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/69c9a8cf9ccaede2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/69eec6f09e6bd419 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6a2d1b54bc4c83e7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6a3112466b914464 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6a36881a2e29ae1d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6aabab62ad170202 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6aba68d14bae83aa | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6af65fc691829f92 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6af8f3bceac1fab1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6afa60e0d0922d6c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6b3ef3911be26341 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6b5392625e10a1c0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6b584ff7ac50a50a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6bdfd8b2021b1a9e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6c27bec3337d1e05 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6c460c92c1257a4f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6c4d08db7dbc7137 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6caf2720e4a08b36 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6d1b7f46eb9da226 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6d5b6efd5b0d47ee | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6d60f99d8b673471 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6d69899e76b487fb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6e270ce31914b3bd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6e5b52fa6904fda4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f3b3204f95e35 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f97f8eb53f42e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6e8f57030782ad20 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6eec46fbbf2a1eca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6eef6dc9819b9152 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6f1dce16f0b2217c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6f1f0157aa06f890 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6f6cfacf90a8494b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6fa0e1fce6bd4797 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/6fb14e105045fe70 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/70bc8e69f5d66e8c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/71194410927f85d0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/716f1358a59b0f3f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7202ff97885bde82 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7213f165b12a546b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7227f8c4136335a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/722e096c046c7d5d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7261f01c853f2284 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7297258aba4454dc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/72be28768ae49b0d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/72c117512eced531 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/730c78951cba4e48 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/732b8cb99d3c3e90 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7416bfb9dbb1003f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/742c93f81eddc506 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/745f0706c53a6582 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/747c7e10abe1039b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7495da9993117e05 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/74d1c80a5f5c519e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/74d902474887cdfd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/74f32e0d665b8fde | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/74fa15c6c593d153 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/75011f06261e0c07 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/75279bb7cd7f6c99 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/75a72c688944fd1e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/75acff3c7dd4d09f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/75c1d15fe5c21361 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/75c762c8b1ddc690 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/75d078845fdafa7c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/76035f3628c6dcca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/76cb191530dd6b1a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/76d19064f432e508 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/76fec06d569637f3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/770abd7a0691d3a2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/774d76d087b9ae8c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7776ce7a59643d8e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/77f57985bcf8e4af | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/780f823bba3860ac | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/784053cd38076124 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/785cf1c3fc0f01b6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/786823bb2c6ce835 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7893cc7c125963b0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/78c29c22864003da | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/78fccd13348014f0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/79434458b56580b6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/79823deed7cf303d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/798a1d8c2e099b21 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/79af8ae1fc6835bb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/79b7d1d1ec3fa9aa | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/79f926a51f96618f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a3811858ca2d373 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a3c2b9dd9c5025a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a4310a7087a3f1b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a4cfb59a6b58942 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a5be2eefab24f4e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a7c39790fe126e5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a8add6959629c07 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7a9052ca39fc001b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7aa031f797e72826 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7af2a2529ec01c78 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7b046c7d3e3ab8a9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7b0d09c703aebc9d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7b3f834c6db6c295 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7b476e4659c4b633 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7b492f509f2a13d2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7b52c1776ec47638 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7bcbff9812fc2e29 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7bd39fd57937cb0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7bf732d042871b66 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7c4ebb58ae6b4da6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7c6c04e1bcf526fb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7c75b6a091391c8f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7c781cff7187cb9b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7c7c30f6607f0624 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7cd8c920ebe214f7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d02d42f0c76ca82 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d11137902a92c95 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d213975bcc8c750 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d33650bdf52b579 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d3eb716607e17db | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d43546abdb4fa3a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d4b6caa0c2c1364 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7d71a76884d72aa9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7dba34487314831d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7dbc9ecaacedb9e4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7dbd13c3368ad77c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7e0b2aec842b25ad | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7e527f8decc2655e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7eb595bd48887b80 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7ed0e5177fb30539 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7f0cd38089a03ae8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7f169ae922759e2a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7f31ce55922d385c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7f42f249805c3b02 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7f4462413c6aeece | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7f9499243823c3dd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7fa9630e50a1a5d5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/7fea7df79eeda5a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8005acdae8dc7285 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8016c9de7edfabf5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/801e277f3668b278 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8088cf3c48cfd245 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8094f2806dc5a729 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/80984e6e7d0ec61f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/80bba2a72bc806d1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/810fcf71eb8d047f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/813341ee3da87172 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/813da4d73afb86ba | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/81ab8e7ed003a89a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/81b51e6a05b41861 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/81b60a543e31b22f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/81bd1bfe96d0f44b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/81c54ac488e70f09 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/820f55779b886292 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/82256e4f31445130 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/825fbfa922a3ffab | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/82b06d48e70949d1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/82cbfeb4245120c4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/82f3f1c108e55364 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8302e089ee982f1c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/832918c1765358a6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/832d7cdb8a571a9d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/839bd509b0b1e0ff | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/839f202bcac39b1b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/83e93d23a6a4cb53 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/84176dcf8605a20a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/845d3b8a1919b3e3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/84967e4fcb71b1fb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/84aa53eb1be8c63f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/84b7c434b1392c36 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/853ee21cb55f2491 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8551b1bb1ac79786 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/857e5becbaf8d912 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/85882299083d3965 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/859717d2fd8b1a23 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8608317d0f226b5f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8625534c61475d05 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/86504d70525eda9d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/86712eb0b5b175a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/867458a94d2e4ce3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/869e773a1e4e75dd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/86c0e240e4639f5c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/86ccb9c9c5a26236 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/86f7dac2c82e3588 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/870e6d0fbf1a5cf2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8710ce7ac357a05d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8727b16d337d7b81 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/874cc243c277174f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/877ef180e579da57 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/878129fd4da9f745 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/87b260fa7bc68d57 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/87ebcc367092a1ec | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/882f292f2deaa2b0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8832d14c275e834b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/886cb4275775e006 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/88df34c5a6292eb0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/88eed1bc8f18d8c8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/892d1d52040e905a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/894b3c2ae51997ed | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8953ad462ded347d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/895445f9d8ba238f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/895b17f034672b53 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/897a418620040d4a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/897a6f2367714b5d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/89bb8ef4d1d2eaae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/89c9f54c1b0664f4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/89f189397198ae8d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8a1b29c0cbe27e36 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8a3077062d25a2c8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8a4b71f87b28c2e1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8a52ea4c1044fca6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8a8e958b063d2bc2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8aca0a8eb84d12d1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8af882453f36a78b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8b01f63a428e64ef | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8b2c02175a0e153f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8b33614bf6ba0adc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8b4c889c21e0943e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8b91818f7a7cdacd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8bc108ed38fe5b09 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8bc73454c55df588 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8c252e088b8fb93f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8c4aeaed2b857689 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8c653a9e368d8edb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8ca2414fa0d61eb6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8d2568e3a819714a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8d27070d5d3b1b21 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8d41da55548ed5b6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8d5811082ee0fbea | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8d5ce21f9d68ec8b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8d63013297af6f54 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8d954be6abe79e4f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8da667ccb8d1f867 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8e0abb15a4b89d86 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8e1b0cbac3463159 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8e20e38c912e5afe | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8e5be088ace3c18f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8e78d1960380b33e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8e83e51c0f18d702 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8e91a0dfd6a7f5c9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8ea63e10d378c049 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8eb26b62435b5788 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8ed4eab9011efc07 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8ef71aa5bab13446 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8facc0024aaea908 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/8fc1b83fa4f98753 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9002ff01794b7e9f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/900d7163d39c087c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/900d9e0c9950eeb2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/900e8779ba989db4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/90627bf1cef11c1a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9064aeeb2fb5b513 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/90eb3c31a251fd0f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9111578eb82e8537 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/916fa63fb72a63a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/91730a8c226143a7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/918065afce52a593 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/91c25a9b8558d508 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/91c80386e20311f0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/927cc88826cbf642 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/92f75f690317ace3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/932c87094de84470 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/93accc70638e21d8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/93de619e549ecfdb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9407bf32bfe275e8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/943402037ef9f6ce | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9497829c83f3f80c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/95018fbf56108782 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9501dfaf3a107867 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9509988895e6a91c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/951430e91bd86fe1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/951de4b4c2c1484b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/95304c9e88b86c7e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9559e4e0f0b83cae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/95e94fff32a84340 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9690cdb74c6d4260 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/96aa77714f767a55 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/96beecbc0797c5cd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/96d6bcdfce28539a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/96e2233445428ee1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/96f6f02cb9bcb915 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/96f7d7de339f50e5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/96fca31a47531da2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9712b1084cc66fed | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/97f46dc902a00d03 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/98602791350052ce | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/98685c8b2e42d5e6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/987ae6c24172152a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/98bf1c716214adf1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/992e5083b877dad7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9933b54c48c55164 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/997667d2790f81fd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/998d79f16258ff5d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/99a908b2ca797ebf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9a139d7e593b2417 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9a72843904a8dde3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9a7b38856796f7c2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9ae31f36059bbb30 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9b0e7fd08b5ec0b8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9b6cb33cb07d167f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9b926f5e672f3274 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9b94ab4626969b93 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9baebf3a37e99756 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9bbf569b91dee7f9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9bd47020a2df4837 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9c9f06af0c8ad7e0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9cc334dace5c05e6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9d490e4b159d740a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9dbeba4a59dc0732 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9e04fbd9ef09274b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9e403446f6483026 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9e8ca562df5553ee | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9e8df639abdf5b9c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9eea2291fc0db312 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9eebf75230cff9cb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9f08285ec88c9fb8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9f10ca5c8ce8e8cf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9f3e3c17d5ae678f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9fc4053683ab3818 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/9fcebf950d51fc66 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a00d838d374e42e4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a00f3a8e67bec792 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a0620bf0bff3ece1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a0f953623d768c69 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a122ebe2e4c8c391 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a12a9f1a0b0a2e01 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a1656a466e6b2add | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a17751b04fefe869 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a17ada11b5ac7ce4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a19d2156b5ad480c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a1bb0f7d041fb7a5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a1d18e8d8b37abdc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a1d76b3725c64ef1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a222de2d445d0bf9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a2294c73fbac76d4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a23d02d683c00837 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a24a16dcdf3fd2d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a2775816e8d07026 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a286bea41bff43d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a3bd8e4024e86aae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a411f5b6dcdfc675 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a4278c9f4eee8a51 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a4f38b0e5b633cae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a518d0e7a449c8c5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a570c41da6adf3b8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a5821327c877103c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a5b0615a3564645c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a65c4b3987955cd4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a6ad72bd3d35a6e9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a6d7a274e1c79b9b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a74d2dd675e5ab9a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a75dad34cb8695e6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a77aad158a170fd9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a789de25e9a49696 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a7aa6a969ee0ef15 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a7b69f17e4f7e3b4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a7bb1f0d34931e4e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a7e23f604e0cec13 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a7f059f27127b515 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a81807d6d61776b8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a82bc2c5b88fb925 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a855bafe7e870574 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a8b8cfa3b1748790 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/a96288019e234164 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/aa5b15079d3e4eee | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/aad6210dcbbea4bb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ab66ee0b44bf65dc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/abec1dc02a761db0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/abfa18bff2a6ffce | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ac38809eba7845d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ac460043b4bef24b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ac6b13bea9827302 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ac911464b58abce9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/aca96c0783a88ef0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/acbc971caae0c0ec | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/acccd2401d856938 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/acf9f36bb222b8bd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ad2b81b6116cef08 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ad3c2399cbc78e62 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ad7f4f4df702eafd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ad9b2b62fb74f120 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ada7a5d1b60ebee0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/adb71cf50040e325 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/adfed662a4afc794 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ae17406d87dba636 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ae1b95a112a69f6b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ae4c72e6f3b65965 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ae9424b947172ebe | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/aea8c6730621e8a4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/aeb08373369c7f43 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/aed0cb73c5ddb9b0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/aee8100d6de5d992 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/af025400b3fa6e1e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/af18844113efe7b7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/af2a0a3103c89f9b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/af6d9e7170e1d13d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/af9e46916af1506c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/afab3a31b580a9e2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/afea89c4ff9cac8c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b04c74fbf4ad19cc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b0732cbca9bd2f56 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b0a01dc4cc72d1ed | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b0a2e0d1a132a7be | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b0b0dcc02128bfea | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b0c292e1c902fee7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b107c4c5bddf2c28 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b18d6b698bed547e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b1de9de010211d56 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b217ca44dd0d43a4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b22d9774cc448fdb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b246cc90c1223f5e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b2520315a05aad0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b276145ed0f6626b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b27851cfc14abf44 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b2fbc68dd3165bf1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b3295345877ff28d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b346f041b69c405c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b3881d58effe5f5b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b3d316f6b358606e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b3e70489d24e1e97 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b42576f6a0d56d55 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b436f2f7b0101c0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b439156d6ad57b34 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b44eafa1da812573 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b45849ad9dd28918 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b4a314033e7b0159 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b4d70d40d63be9f1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b4f84a20be18ac98 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b4ff16edf5b2922d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b52e1ea4aba5592d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b54b7cc3e97043f8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b56d78c25315b1e3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b590a871a517c1fe | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b5a8b2df80440e54 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b5d8be61df2e6c1a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b5e751484160d828 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b62491f59d4ce799 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b64be398b0a10fed | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b6fe7e111a31855d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b725adaed70286ba | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b7328c69e0d0be66 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b79d5ca815095e42 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b7b5c6cd9d43bb91 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b7f4645fe6328097 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b801b09d0dfaa5f2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b8898660bbba98a7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b8c3845783a76ec9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b93f364ad6cfb8c1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b94308e7a707b006 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b94acd1875b27423 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b98ed8f63ce4b292 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b9b16509f80bdbf7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/b9b6ac4e85c72377 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ba03af0e9526277a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ba3ae415959db5f5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ba44de5149224ef2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ba4da497fc7f7dd6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ba5b51ee7213be7b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/badd1a4022848b57 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bb31178e587047ec | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bb7d8b7ded809867 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bb82ecfb8282442a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bbc76a61b04c2a3b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bc1066f31a5fb3f3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bc532c780afe5de6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bc7163ee81864233 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bc8b3b87167e2f7d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bc99fd8d1a515552 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bcc4dea23c7c5ee4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bcd2495f5f79f77a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bcfab1f756d2e24a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bd27d8cda8fa990c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bd47302a402fdfab | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bd7bb32b4fc7ce79 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bd949afbd20563a9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bdafbe18d202e537 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bdbb5a72c9d3e4e1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bdd0545da69deb61 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/be1312d2a236dbd8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/be213d03ebd516c4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/be443cfe05beb71b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/be49fd648c446ad2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/be6c9f9cf24eab39 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bf06da3cadbdfbef | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bf22d92546932a6e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bf2546822017de95 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bf7549ff7bad4d64 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bf8eb982624b82c0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/bf9ced8cc2ba701f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c056f2671928349c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c06ec10838f0dc12 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c082c3c0a13cacc7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c084835d17c9ec12 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c095718d75b5a474 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c0daa716d6a111c6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c0e79ff5ce15b691 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c0ff0fdfceef11f4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c10bf222925edc9d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c156d2b38f1c0de4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c15a4c62e3c36cd9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c1950223dbf5007e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c199238d9de51473 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c19a52a63f1592f5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c209b87b2fc242d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c267443f2d089f0d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c26866d6315881ca | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c27f537fff3a8fcd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c29187d1e1ff7e4f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c2935d50a8251826 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c2a336fb46d90683 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c2b30901e1e4062b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c2d954444c29c4d1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c305146a4b8c4b87 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c319a472c3065d7f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c389fb8592b009f8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c38bdfbeece0fead | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c396eb0a65e3a52d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c3e1e40cfc046982 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c402b91b6ef79c38 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c42fc2de34cd76fa | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c45479572672a57d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c4e949c139ec2180 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c4f33b65deacc8fa | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c537a340655e527c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c552c05438b74b1e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c569380666f53c0d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c56a965e60a56259 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c59fa47b4a9d26bf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c5ad6957121b5593 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c5ba227e2e5ada5a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c5bdf80813ae4b47 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c5d98c8ca09b35b8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c5e60e677ba77a6e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c67cff6578b19ebc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c71fa99285da850d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c7220ca12a4ef8a7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c7250856c0a213df | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c74aee6aae305bce | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c7a66e35912445f1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c7da36c985259cd7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c8567685ad259e52 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c85e0cac0963afde | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c87b3385d68fcb4c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c909dc499df33263 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c9325f0fb91579c8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c94bacb2debff0bb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c977d8be82ae65e8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c992f9cf30d97b42 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c9da8b18f8e12f60 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/c9e63caa029986bb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ca2d648a3cb0c759 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ca52c065f613e798 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ca92b9222dd2d8e0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/caf81e9797b19c76 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cb05e16c05ad1ebb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cb8ada551a7b1103 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cb981ff836d2f8ef | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cbd0e0fa88a03817 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cbe291ca2e13acc7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cbf32e563c060c20 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cc4a7b089c77e204 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cc7e54b080bfb28a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cc92c0640561df14 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cc9a5e6c88270c67 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ccbc2aaee70f9aa2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ccd6eaea73cf3985 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cd23583379916d06 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cd68d386a5ec2ef0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cd9db6f520f31525 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cdbb6c57c8b92a0c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cdff55c9c139f0f6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ce37bbd59bea0571 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ce3b3204fb117015 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ce7d1b55ce99c810 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ce8053e68e69ee6b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ce899e8c955f8d55 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cea76eacee2e91b7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cebb4b4b42665e44 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cf57287860d71fc3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cf8eb840fdfe52e4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cf97e422eface2da | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cf99b2bf4e83673d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cfbbf822a66b7932 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/cfc50e2e9ed64420 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d0004daf29ea03d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d00d1817fa9a9ae4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d01eda585945312c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d04474c9d020c8d8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d06daf89e408f49f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d09365b72d3925a2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d097ca16a70b8f79 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d0bbb79b562f6415 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d0c856dbf7154d95 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d0fcef4d7cce66f5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d113f09715657b14 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d115976bedb0cfcc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d11f1208ce01c968 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d28b9bfa056de288 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d2a3b57f94a2698c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d2efdd57c6c51d01 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d31a2eaf102c0e92 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d3396abfa54f2a94 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d34b3ac54bd82a22 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d3b3ee9484b292af | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d3fdce896e7e9ab9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d4305711e8aca01d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d4345d0b133285a1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d445da7f776378f0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d48f74efeef4222e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d4b2bd124f3f2dc9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d4d4eba6ec26663c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d4ef06e7d9a17553 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d520a072a3f7f539 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d53436565d2ac971 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d5c6233f34e10dbe | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d5dfdc5b58cff399 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d611700b16e36251 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d614d90e1b994d8e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d63c0b44fcdcf512 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d648bb6e12a71535 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d6970b0297164416 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d69d73fa06173481 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d6d4e437762b5339 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d74848e91e282547 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d768496e51d5d7a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d7be098f1a144539 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d80a76d19d961333 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d850c0dec6bbcc67 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d89f0b98e6a21368 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d8f12be090eebd2b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d8fd8ecd00d977eb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d901ad3f9288692d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d903f1af04618bee | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d917b443825d01fd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d91c35fad05ca52b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d98b2cd76a0d80b6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d9b0d3bd2cdd7aff | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d9b332edef751e77 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d9b60512bd8ee3d7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d9e4f00ec75a1350 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d9e6ddf0e0bedbbd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/d9f719ec5581eeae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/da08e2026943635a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/da1568ea7ea892cf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/da19b92fbc78d1e9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/da5a1734522656c9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/db2480c0e62b982d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dba0c13519a4b8d1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dbbc62d7c5ed60a7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dbbdb26c80952cdc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dbd5e5c836fd2581 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dbf270c8c2cbe97d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dc0b48adcb6f3422 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dc2693608f14abc7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dc33e41f97c5e722 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dc54cb7e91d2f38a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dcb7dbbc5633c823 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dd114954c6581eaf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dd56a42edd44a31e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dd857fcb979bfe7e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dda536b0c6c477a4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ddc94258c6d436e7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ddd7122d6b920c0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dddcbaccc19776b2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dddf1846fceddce3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/de0ea661f505081f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/de7d39a9e883a7a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/de807a203aa69aa5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/de811a258abba75b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/deaa5873c0f69efc | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dec0f6f47e85a369 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/decc7a5ecb5a678b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dfc84ff236d027b3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/dff21a19e1e06332 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e00c3868c3521fac | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e0239b7e360550d4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e0253e58c1278db5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e09446469e38d4c0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e0a4ad169f562276 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e0bea26cbe05f309 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e0c36c194e38abe2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e0f13d706712c27c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e115e0e92c80ae81 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e116bb5f3500c008 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e18f73c8b648a004 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e1b0253f249a77c7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e1e2857863034da3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e1e60c8715020585 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e205aa29bf76e48a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e2078d43c8b391ad | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e225d447330fd2d6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e24dbb6e8096342c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e275d1372d1784ae | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e2b683bfacbdf49d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e2b838c1cd418265 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e2bdcf284e58ecc1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e2c21d38856e15a3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e329ddf4a563f52b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e3443030b91d09bb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e37da7df2b3a7988 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e393a5bcca42e005 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e3a90ef85cf7113c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e3aba5f05fdcc281 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e3e7e02a2abca655 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e406d8c2f357a6d5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e40aa8747281bb90 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e42c878ccd08e971 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e44a59b4cdc0cacf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e485a079130adb24 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e48eba5e1fdb70f1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e49ec1803831bfde | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e4e3d4f0c2a095bf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e4e6de5c4d070d5a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e561b1a6635012d4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e56de0253e4ac6d0 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e575ff427148d2e8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e5b132c3dc144a1e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e5d52df97e83fc58 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e5db93343fb3edb3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e5ed7ad408f72801 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e6337bb8e6ea554e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e67d368cf3893078 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e69aa5e6d8347a53 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e71530363766229e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e7446f3b53e5995c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e748e617b5b662a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e76374a135069f6e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e7b9fcb7a1504079 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e84efb19fd22e8c5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e855e5042703670f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e8c144ae0d88da30 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e8efc09fea15c950 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e983c1e2d8024577 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e997f1b03f124738 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e9db4a86d29a8ffb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/e9f2354413be55de | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ea0883ad2aae25df | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ea15bea42c0b1458 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ea1b06dab23ae957 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/eb3c6a1fdf621ba9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/eb44328c43e5510c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/eb6a2a3f8b7d110d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/eb83bbeda55f93a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ebb875bea50d13ac | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ebfbe8d3148e12d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ec0555c32a28bf01 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ec13281f833c182e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ec28c543b37bcd7c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ec3ce8bc0814fd37 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ece074a67500e91f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ed01fc14fd793af8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ed11854575aa49fe | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ed1cfd5aec6d31a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ed26ee7f25abe982 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ed5e0720bf7e1d6a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ed7a993361f81acd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ed9996cc06c7e40a | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/edb2d198614a4d5d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/edf49fb865561e1e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ee5f4b35d3ff43ef | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ee859b0be6207a08 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/eef57ef8de1c568b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ef0f4ac5727c5f3f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ef2084e81d2a294d | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ef296d064753dd42 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ef68162edd93c9e5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ef71fde1891bda50 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ef9bda9e87adbdf6 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/efca6f02c1f797d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/efcd1e172071b7ff | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f008d8d0ab76d823 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f015d537c55ec458 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f01ff1d7756f84fd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f03556ff2bbaf2cf | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f05f7a9adc2d4095 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f07212dd70d382f5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f0743476c37c6590 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f085b9c9fba071d8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f091466478071ea2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f0969002b4db643c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f09787e2c0d12747 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f0cb54f6f7c56264 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f0d1fcd9532e5dad | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f12b8c9c4f8d9e16 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f18994f03cd04f6f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f1e1458b65255f36 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f21d4ed67679d9b9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f270391d6401b4ba | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f313804d4d795ef4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f37f9bf7a97be874 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f3900306fcf37218 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f402d1f56b5650a2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f417240aa2694777 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f4221bf11814c7e4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f44323e2fe8e8ec7 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f468926de4bf57cd | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f47ab785e4b6efb5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f4c064424618cf0e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f4c4d1378596d1ad | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f4da053d73d4283f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f4e70c3c50d3b4d4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f539d6d7565dac43 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f557c8001a967662 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f5aad145f6286289 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f5acc4a823dc524c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f5bed6c713f596ce | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f616afefd175df26 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f62ae893b48fdc38 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f690db53c2cbce49 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f6b608e206e2174f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f6ca1fa82763be51 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f6cb11ac365951a4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f6efef1c6e99e5da | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f70709a3d511383f | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f72cf33da72ff2e2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f781654f723f7727 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f7bf3d9f80124ab2 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f7c26387aef5ca5e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f7c3739792afa3b1 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f81d7a4c2f05c28c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f8882b377da1c743 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f88af51e6e25a098 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/f9d15925155ccdb9 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fa0583743b297e08 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fa158ab43afdd881 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fa8d6e401d166506 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fa8ee025131d2498 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fa9e4d6e36fd8b04 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fad50501df8468d8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fadf92e9a5471169 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fb25f9e470fb4c61 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fb40b9a187b0a625 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fb6efac9d8ccf9d3 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fb77b0ce3bdc5160 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fb976f117daea11c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fbbc96b28a8a7171 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fbbcc13fbc666d6e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fbd68834c9062e9b | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fbfe57fe8412c248 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fc37a0cc6f7f93af | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fc4fed5cf1340b7c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fc62bfa6eaa68c1c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fcb47ed59cd7a682 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fccb4d052ef32dfb | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fd117b868008bb64 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fd1d894dd9e09352 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fd5e7e7c4db744a8 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fd694eec3357e7a5 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fd91770d8a3c3474 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fd918cc08f89304c | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fda4a0d98355999e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fdb11bbde86b3a48 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fdb89bc248511faa | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fdc899c15feecc72 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fe24f332ba32924e | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/fe6d812fbda6b1f4 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/feb5ad1cbffc9a64 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/feee500cef1cc457 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ff1baf4b448e5876 | 2 ++ .../cbor/testdata/fuzz/FuzzDecodeAllocations/ff7e316a5a0fc914 | 2 ++ 1473 files changed, 2946 insertions(+) create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/000807b52481dae3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0061fa19679be87a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00833b633bee1a44 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00a9e820b4bc2961 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00cd3d7f48ba27f8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00eac722b9e18132 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0123042ff916aa07 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0155c3b9823786c1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01565827aba3c17e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/015c6785ec6f21a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01971d6f1195d5c4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/019d088b0b52ee51 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01adb020b9b0adcf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01d29abf5239ae2b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/021310d2523fc753 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02218df1da65a57d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/022ee388f166fe8c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/024f06a214b7b46a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02b31453168e4807 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02d174b75863f502 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/030eac6dc1077232 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0316a3d448ba63eb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032a948e21e5eada create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032ff502665d340c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/034e2f7daa3a5eda create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/03665273be54d94e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/037c1228970e2af7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04076c771b933181 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/040d979e62625d33 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0446aae350833264 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/046444026be59095 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/048415c326f3744b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04971895ddccadde create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04fb86a49a32c851 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05758249dda61b55 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/057990b980604f49 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/058d48efab3bd0ba create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05cee13c8c223d0a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05d7f4074cab8c87 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05f74c351e3b7300 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06027f6cef50b60c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0622c074d8496e4b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06400d50ee9156c1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06d4ca5da82e88e2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06ecd2ae4c12c117 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07078f00e448f6b6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0726373ce1d77dc1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0797e86c900b4725 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07afe4a8c9624fd0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07c96f6b389dc56c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07d2eb30c88dc1bf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08143bd289bf43ff create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/084011b5eacda5ba create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08567900dff9a38b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/086934e2def8f960 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0894b6d0227b1c27 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08ab9ede3da9b81e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08b5005ef5ee3418 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09199ac2674d1f9b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/095b593f87f4119c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/096be4d6bff38a90 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09c01625299a6cc3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0a4ea61fbc589ffc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0aeae2e710ef977d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b10abfae0a3f193 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b5133584a0ebcfc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6c8d7f641106f3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6efc6272585b39 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0bd4659e514f7549 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c0757ec3098e0dc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c1ecca1593a8f91 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c27b17b6ccd98b0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c432ed41517e793 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c8ac07e440fe9ae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ca523556c48488c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0cfc70c67b86ce4f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d1ab1f3874df95f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6459169fc0e922 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6cb9af10ebd9c5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d7efebfbe993205 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d86a53c75eae3f9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0db21fe48066525e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0de844a5eb1051d5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e151544729b7a88 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e317f6a5078cced create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e74c62ab1ea7f03 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eb92c00916f8eaa create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ebdd82408a7cf69 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee0509a417bf9bb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee9c2ff2cd2bf51 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eea516fe5403761 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f33c79b262b0889 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f3530f25bd10aca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f4a95d1bfb247a1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f8b85bed559a5c6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fca77f3dace92de create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fe970c56f946286 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1027a6c4c4284624 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/106d6a4185355582 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1073dd5af1ca163c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1092721f8424f12e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10d1b0ee22c38311 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10feb66562c7be5d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/111575bb85261a49 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/118f7faab99c7197 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/11a4b83263841094 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/123577a397cefed8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/124344d723e96d53 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/12e462996607df93 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/130f288fa770ee96 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/133056c8023cc706 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13499635388b5379 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1357bb84529350a6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13d98f91c618ce4d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13e270736e830e97 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/140cf1ca813c0147 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/147e407314b383db create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14a2e97b07531ce2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14e7f90d8f7e4995 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/152996d69f524d05 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1532d4b326f16032 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1572039e7a331ee8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1598a161948dde4e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15b86882c95bb297 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15d34aa7a1bd56f6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16154c1766c9ae1e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16b92a117372fffb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16eaaa956764dcd0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1712d67181358055 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/174d198e9931a939 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/179ca80ecf28bcb9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/17bb062c8c283897 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182170b4179c2fe2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182616785251e990 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/18560d337955514b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/188aad383b55e2e2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19663275f675484e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19785b3eec389fe1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19a84805b56aa592 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba0c4305ebf169 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba40d397da3e7b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f1b23c40597ff3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f94ee780767a12 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1a4701d9f099e832 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1af1a16279b3f910 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b364cc32ec7d5f2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b3cac2bc4812f7f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b76301aa0dca2a2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b80eff1199317ae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bba1a4f81a6d82d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bd1ab9b27cc329c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c2e7bb09d5685e8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c56181179783fb4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7c3d8570b61b92 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7cf1bcdb3d961c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c878ff2c187b7ca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1cb6dfc21ff40ee4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1d559614d5eeb563 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e05786a3c932b36 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e0a00ec629a578b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e3a1163cabc3179 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e4f089878718782 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e8c6d7adf692118 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ea8740039165d7a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1eade828d10ed7ab create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ef147cf8e5a6938 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f69846c683e9947 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f7247fe6fb6c863 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f8c609548208aed create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/200a04deff8c8345 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204d465fdd594827 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204e3ef83a76c9cb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/206ebbca7bdcc1b0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/210148d4e2c7937b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/214409825cf19cc3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21633ca2563dcd1a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21726329a6158a7d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/217a783b78414102 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2187b9aee1225752 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21a4129d319bae08 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22291c763b204c1e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/222e3b6161c78d79 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/223b9bc0cbcc1387 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/225c45f43aad5ba7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22913896a268e331 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22fd7377c8beef24 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2333ab59c236bf28 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2334786df04575bf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23676eaff4ad7a29 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2395dd85d7ccb6d8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d2c1f0b9a92c9f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d5cd932563dbb6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23e22eee7aa841f9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23f8f842d686d268 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243326edd8bb4ede create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24389071483ab783 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243e38770dfd29f9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/244f7cc0973e31d1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2453bca242d40fee create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245c8b113e744453 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245dd523f0cbede6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/248ca08163ab9221 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24c96f5056354d6a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e75fd9b7adc4d7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e7cc53c4749a0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e96678c0908553 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24ed6a6e74652663 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2526b2742c867ab3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/255c0721ecb5c907 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25845824ea0fc0c9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25a1058724bef878 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25ce37320ed6d565 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25e53e79bc531f41 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2610cf0f4784b2e1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26148a8bb1150dc3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/265ab13e0c72bcc3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/266d51bf101060c9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/267091b0e7016f7e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26a9ac44cfb61f81 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b384dba9e5ecf9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b5f658054ed7d2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2727279f0d86789c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/272b6e81cb289890 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/278e8c63cfd7a039 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/279ae68f7cb85a0b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/28082c8abedb7628 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2827c2f8e52a20d2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2832e945cb0a002b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/283953cd5179d2c2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2899e051c824f84a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/289d2ce1d9229efc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/29d3b5297dfaae2f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a37be948e5bdc38 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8a9ca285307e5c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8c1124319dad18 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ae315ca427297b0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b0e5e46f1371255 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b14030899009353 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b158a9111ae2ed3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b19d3feaf18dbb9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b4bf0910d64ba71 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b9912e2ad0b8396 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2babd65402e25106 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2bd7bc8b6d35dc5c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c1d989bcbe31ab0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c2eef9fc5ce85d4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c5d7f4a918094a0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2cc2686cf522df71 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2d7269cbb207f748 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3d27c8bfea6170 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3df2f37626ea03 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e4810d5fb3fad77 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e7ec59ae9f4062c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e92567d1c6070de create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ea7c0e48ed4484a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ecbe074b5ba6e99 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ed142c514f9652e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f24821381c60d2f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f5d2dfffa4dad27 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f6f3d07e43e1f5d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f7571e1100a3859 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f8b9c80ff96cd66 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fa8713102ac0ce3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc0f6c15791cc3a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc63a4b2c6cc6d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fe2da74a8e7f876 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3020635fc76a32f8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/302359c0a751cc82 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3078d80e7981ff1c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/307fdddc14168e0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/308aab760f7f9a94 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/30f2309d0518045e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31096504020991fa create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/310dada39b0f6930 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3112266480e854d0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3148c86e820f80d8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31b82db92f228372 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31c5837a9d1dd505 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31dd2249761c03a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31e7158eba55df57 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31ed0e457ca5f29f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327dab45bccbaf01 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327f7cdebf987c96 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32ac059a9c6561ec create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32bc1ee774d88e6a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/331c65319a13d54c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3366179ae4d70e26 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/339b91fff35a6c7e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33a5e5d5c8fed76d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33b2111fd37085c8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3435c978de0d3510 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3499da07ce48c821 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34eddc7e354243a7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34ee8f67c26292af create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34fb6cadebc43a61 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/351443ba18e17347 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35253b848ce90f49 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/353626f1d58c860f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/355d60f85367e3ad create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/358abc64a2c17be7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3597a49cfb5ad976 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35acec46207d609f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35cab69eecbbaf1c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3653e80b6f343bb3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/367e0caa216fb108 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/368968a6be033229 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3692578a0082e389 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36cb1d306a63309a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36e794279c48a944 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36f3956102eafe5f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/374dd24d3ae10325 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/377db2e487e94a90 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37904366dd3d2868 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/379c81faf91a68f6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37dec3363e8960d0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37e496b9ec80875f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3837a28116827562 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/385fb72ee81a4afe create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3873d70d821cfdc5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/388303bc840ad871 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/391e59b2ef08709c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/393536f2a4eed9a0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3997c7afd0ea8408 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39ba1bd4ee05efae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39e97a80dbb0300a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a05ebc1e8214e76 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a2f45eb489fe168 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a3fcb3446fb2ac4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a525372904e200f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a8187628e01af4e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9417e0abb8370d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9ef25daae0f3b3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3aa5b8096fccb900 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3afc1bb2c5c772d0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b012f76ce3ee14b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b40164c8229f276 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b8ae4f1a42699db create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b935ab68e36ab4a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bd6f1b26939e22d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bf3b3d01ee48757 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c0db78cd78554b9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c28d4b0e71f8bcc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c2a9e434a0fa503 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c7b4352ebaff341 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb48b965d201a55 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb6ce2b47e44bc0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cc7a750b707f44a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cd92cc88573b345 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d1e133f831f92b0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d496ed23a53e159 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d510b1667cfc316 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d5db21dd8bb9b1a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d63353cebc2247e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d790719a4cce318 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d9a1ab314d025ab create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3db1b65899f9e8dd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dc515382c66c228 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dee3d6642e7a340 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3df476707d238b74 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e1d88524d8b9719 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e2c1feea099fd34 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e448f9c094fc8a0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec5c3c0f4a5b8ce create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec7b234d72e6bd3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ecbbd9d6396be3b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f1b489ab00009ae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f40dde107e7a3e9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f76259456c50357 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f95f2559e8dc64a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fcb7688755e3e29 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fde41a4e8f54f3e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/400c75cbcf4d9651 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4019a82a679ac799 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/402e87b2b5d82a51 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/403a85e9561825d7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/404f9521aaf71255 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4081f0bb4d2bcd89 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40996f0f16e02c98 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40c0320392a833fc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40d377a36bd4d424 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40df7ac036ddd3dc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40f5f99fe71e89a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4121a2fc169f511e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4214878cc4616bd7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4247adfc43600804 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/42509a360e4d2304 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4253f6deafa8db4e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4272893fef070799 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4279eb0c0a8a518d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/428d7653fe008412 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/433f0f4551be7147 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/434704d10cf83c94 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43a329b863308626 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43abf2c1ec3ce9e4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43df6cfdaacaa61a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4421cbb4f7280ba9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4457bedbc5fc9009 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/44d3f66c688ad516 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/452a84ecce65a3ca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/454e89fbd34310ed create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/456bd93571108d22 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/458c2ee1136120c1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4591958e1592ba83 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/45966840b7b143e7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4609036d8498bcea create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46698f781e22af57 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/467322a0d1b65af3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46c4d974ab137db2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47078f5320041022 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4713d196d421d930 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/474e80fa3944f4f7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4750a9a9b98ed0f9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/476ba1084f2429b4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4770df6aad108528 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4787c87b3c434f91 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47a4da84b9ed0d91 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d443e253996534 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d6ef78b41bf10e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47e373c52f631e34 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47f335c67f5fad5d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47fa8bbcd6f69a91 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/481f6405df9966ec create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4856bab7fc478b1a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/488f33c457838ba4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48afe35f8e9c8d9f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48fa05aefe3c7b6f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/491e5e07161ab448 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/498bc793242f3310 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c13bddc9fec7f0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c9e720df6c9ec3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49de60c029f75a8e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad2ee2e40639c29 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad40f3071192686 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1a23ae5e6a0810 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1cd9ae89f97b58 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b3609fb407caa01 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5aa4d461062e38 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5d8405b5150123 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b6ad5012304336f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4bc903d44085f12a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c3623c1d0e173df create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c51e3b66d4251c3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c7753ee83baf016 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4cad3bbcaf181fc0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ccfcb2ad67eae7e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d04f9388d7124f0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d050dedcaaa666b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d0bb6b3204f022a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d10cfc332ce912d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d8d30c1582e1cbd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d9ca0eec7ba470d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4de8cd4d66afb87c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e2e864f8f10272a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e5354414893a9c0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e53ca6be3cb5058 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4eb116f4334a316b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ebca27aa4c11fee create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f01d5c76f2c00fc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f2a854f8c9d82d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f62a69c96c67cb8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f68c6cdd8f15269 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f720093e5e15315 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fa12c03a8ff28a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fb70aa3f492be72 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc0466f237adec5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc1ad205717ae7d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fd512aa531bf245 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/500a8290e1bb006b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/509b86447970ea2a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/50b715ba543f1247 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/514b7581b9c6d801 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51796f315c27f05d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51db2d3a81e18590 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52193f5c3b231e0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/524a80f1a4eb1ae3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/528992feb58eb0e6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52cd91976d7fee72 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52df67015e6a1add create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/532d7c16404925c4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5344dd31575442b4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5357ea842d1eb75e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/536d812579d8a6b3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5370ef5cbfee060f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5399f52ebf3c99c4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53b1e475e434079f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53e0ab9d8e1ab8e2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53f09e911d523975 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5403ceecfde0e676 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/541329fed9f902af create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54133d9804e5b1be create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5420e3dabb6d7520 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/544055e8acd39728 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547a0666f8b9e339 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547c953b60399802 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54887785bc8e33f5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54f2ec282c79657f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/551835a2faf873d7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55231c09a6464ce9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5546fa83c8831772 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/554abee1d347276b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/555913212b9086bd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/556a94e9f3cef53f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55d3872bf7c446fb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5647425687f4bd5e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/567b2730a37d1fc4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56bfe79c63cbeda5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56ca85432425e173 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56e89149370ee703 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efb68c7ce71682 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efe78b59ecaa8f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5738ddd016fa2614 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5761f2377e74f33b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57b20b4689441c44 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57d1e8e70016f1c4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57f36cb3f1bff875 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5855c88265ea57f3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5881658c02ce2d8b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58b10583a8049a1b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58c32ef259682410 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58ece04b93c33d46 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5923c1326d6c3bf0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/593f2394eb7f517b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59476ac319c0e231 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/599d493455558234 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59ee9b8e5fa421ca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59fac754e2128abd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a1866a8b6d29dc3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a8b99ecce19ef48 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa446f1c0b13099 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa5437e2615bfd9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ad2d752d034c65a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5b735d5755c8c069 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ba32d3229f626ea create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5baf9017a94c8b79 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bb36a5d303d973c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bc23bb353bd35e2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c177fa1cd0edaf2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c4879961f2a1d6e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c7aeb868d45c154 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c94fde3377bb1bd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cb1fef0fc8a962d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cd6398b7cf0b2ac create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d05c4b51fb6b8e4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d3b44f136a09487 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d438a2a81fb3860 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d65f3b9b623bb47 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5dccdadb4a86cf44 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5df167b4d2023234 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e1eb2182291c20d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e531ec13ca98ee1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e6df8d37353b346 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e822c067c5fcc3d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e94764a5a144c95 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e9ee9cfe8246d71 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5eaedc53c02b91af create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ed6060e0b30890d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f084c9f3b916010 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f08f67bb1e88ee6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f0e89415982132e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f48ff6e09d88b2c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fb60e5c0b5135a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca4702ffed2ae2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca9433f7c620ec create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6020b2159d7e72ca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6058ed3f957daa0a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6066e25d13db21d0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/606b2ed27ec5e623 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6084e84acb6d29b5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/60a825de7b2c710a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/611534f827877ad9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/61b3ca8f37dc2385 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/621811f05efe7237 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62259436c0e27f0d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62400174b224d5c0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62774aa60a5ec0f7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/628c32ebd5eeab51 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/629a8f7e8d62d8d1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62d721024de4ebc2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62f91c9bf2b2a1de create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b5ab5612374b9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b94314cf654fc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637c8b178888b211 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63d397eff2683574 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63f9ea2153e3c649 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/645a66c3a0a58c9d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64627f64fe8f1dec create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64acd22058134cc8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64cafadd8e741341 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65101cc1b36d65ea create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65260126a105f3d0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/652cdaf905e318a5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6550b67d2954f126 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6554427ffaac34e5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65646a5df2e00873 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65717f828798eb7d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ac8d0d08bcaf4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ebd86f577ccfc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6660ac91def274db create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/669704495295f1b9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/66ba03f3fa6228a2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6717b8b9aa8a9130 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6720e13e00594dd4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6725bf2da8820227 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/672974c98baa628f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6748bf9e58a5f486 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6757b9a74799f071 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/67fcb53963ec274d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68096548375bcc09 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/680c0a466ba84a4d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6829292c985f56e4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6833a097862b6ede create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/687fac93a56a5086 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68830b4d769f0819 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6898b7c8763fa190 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68a964728967665d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68adb5bb1634d0f4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68c26915a5d76377 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a2c5ac0118392b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a98c01019abc3f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69c9a8cf9ccaede2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69eec6f09e6bd419 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a2d1b54bc4c83e7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a3112466b914464 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a36881a2e29ae1d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aabab62ad170202 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aba68d14bae83aa create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af65fc691829f92 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af8f3bceac1fab1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6afa60e0d0922d6c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b3ef3911be26341 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b5392625e10a1c0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b584ff7ac50a50a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6bdfd8b2021b1a9e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c27bec3337d1e05 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c460c92c1257a4f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c4d08db7dbc7137 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6caf2720e4a08b36 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d1b7f46eb9da226 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d5b6efd5b0d47ee create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d60f99d8b673471 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d69899e76b487fb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e270ce31914b3bd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5b52fa6904fda4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f3b3204f95e35 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f97f8eb53f42e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e8f57030782ad20 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eec46fbbf2a1eca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eef6dc9819b9152 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1dce16f0b2217c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1f0157aa06f890 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f6cfacf90a8494b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fa0e1fce6bd4797 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fb14e105045fe70 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/70bc8e69f5d66e8c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/71194410927f85d0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/716f1358a59b0f3f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7202ff97885bde82 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7213f165b12a546b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7227f8c4136335a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/722e096c046c7d5d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7261f01c853f2284 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7297258aba4454dc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72be28768ae49b0d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72c117512eced531 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/730c78951cba4e48 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/732b8cb99d3c3e90 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7416bfb9dbb1003f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/742c93f81eddc506 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/745f0706c53a6582 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/747c7e10abe1039b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7495da9993117e05 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d1c80a5f5c519e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d902474887cdfd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74f32e0d665b8fde create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74fa15c6c593d153 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75011f06261e0c07 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75279bb7cd7f6c99 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75a72c688944fd1e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75acff3c7dd4d09f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c1d15fe5c21361 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c762c8b1ddc690 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75d078845fdafa7c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76035f3628c6dcca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76cb191530dd6b1a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76d19064f432e508 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76fec06d569637f3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/770abd7a0691d3a2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/774d76d087b9ae8c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7776ce7a59643d8e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/77f57985bcf8e4af create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/780f823bba3860ac create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/784053cd38076124 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/785cf1c3fc0f01b6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/786823bb2c6ce835 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7893cc7c125963b0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78c29c22864003da create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78fccd13348014f0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79434458b56580b6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79823deed7cf303d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/798a1d8c2e099b21 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79af8ae1fc6835bb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79b7d1d1ec3fa9aa create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79f926a51f96618f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3811858ca2d373 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3c2b9dd9c5025a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4310a7087a3f1b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4cfb59a6b58942 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a5be2eefab24f4e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a7c39790fe126e5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a8add6959629c07 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a9052ca39fc001b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7aa031f797e72826 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7af2a2529ec01c78 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b046c7d3e3ab8a9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b0d09c703aebc9d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b3f834c6db6c295 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b476e4659c4b633 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b492f509f2a13d2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b52c1776ec47638 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bcbff9812fc2e29 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bd39fd57937cb0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bf732d042871b66 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c4ebb58ae6b4da6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c6c04e1bcf526fb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c75b6a091391c8f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c781cff7187cb9b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c7c30f6607f0624 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7cd8c920ebe214f7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d02d42f0c76ca82 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d11137902a92c95 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d213975bcc8c750 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d33650bdf52b579 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d3eb716607e17db create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d43546abdb4fa3a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d4b6caa0c2c1364 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d71a76884d72aa9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dba34487314831d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbc9ecaacedb9e4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbd13c3368ad77c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e0b2aec842b25ad create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e527f8decc2655e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7eb595bd48887b80 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7ed0e5177fb30539 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f0cd38089a03ae8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f169ae922759e2a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f31ce55922d385c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f42f249805c3b02 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f4462413c6aeece create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f9499243823c3dd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fa9630e50a1a5d5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fea7df79eeda5a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8005acdae8dc7285 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8016c9de7edfabf5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/801e277f3668b278 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8088cf3c48cfd245 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8094f2806dc5a729 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80984e6e7d0ec61f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80bba2a72bc806d1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/810fcf71eb8d047f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813341ee3da87172 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813da4d73afb86ba create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81ab8e7ed003a89a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b51e6a05b41861 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b60a543e31b22f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81bd1bfe96d0f44b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81c54ac488e70f09 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/820f55779b886292 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82256e4f31445130 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/825fbfa922a3ffab create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82b06d48e70949d1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82cbfeb4245120c4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82f3f1c108e55364 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8302e089ee982f1c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832918c1765358a6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832d7cdb8a571a9d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839bd509b0b1e0ff create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839f202bcac39b1b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/83e93d23a6a4cb53 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84176dcf8605a20a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/845d3b8a1919b3e3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84967e4fcb71b1fb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84aa53eb1be8c63f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84b7c434b1392c36 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/853ee21cb55f2491 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8551b1bb1ac79786 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/857e5becbaf8d912 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/85882299083d3965 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/859717d2fd8b1a23 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8608317d0f226b5f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8625534c61475d05 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86504d70525eda9d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86712eb0b5b175a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/867458a94d2e4ce3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/869e773a1e4e75dd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86c0e240e4639f5c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86ccb9c9c5a26236 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86f7dac2c82e3588 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/870e6d0fbf1a5cf2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8710ce7ac357a05d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8727b16d337d7b81 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/874cc243c277174f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/877ef180e579da57 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/878129fd4da9f745 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87b260fa7bc68d57 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87ebcc367092a1ec create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/882f292f2deaa2b0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8832d14c275e834b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/886cb4275775e006 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88df34c5a6292eb0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88eed1bc8f18d8c8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/892d1d52040e905a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/894b3c2ae51997ed create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8953ad462ded347d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895445f9d8ba238f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895b17f034672b53 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a418620040d4a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a6f2367714b5d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89bb8ef4d1d2eaae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89c9f54c1b0664f4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89f189397198ae8d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a1b29c0cbe27e36 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a3077062d25a2c8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a4b71f87b28c2e1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a52ea4c1044fca6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a8e958b063d2bc2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8aca0a8eb84d12d1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8af882453f36a78b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b01f63a428e64ef create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b2c02175a0e153f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b33614bf6ba0adc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b4c889c21e0943e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b91818f7a7cdacd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc108ed38fe5b09 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc73454c55df588 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c252e088b8fb93f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c4aeaed2b857689 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c653a9e368d8edb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ca2414fa0d61eb6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d2568e3a819714a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d27070d5d3b1b21 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d41da55548ed5b6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5811082ee0fbea create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5ce21f9d68ec8b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d63013297af6f54 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d954be6abe79e4f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8da667ccb8d1f867 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e0abb15a4b89d86 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e1b0cbac3463159 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e20e38c912e5afe create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e5be088ace3c18f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e78d1960380b33e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e83e51c0f18d702 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e91a0dfd6a7f5c9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ea63e10d378c049 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8eb26b62435b5788 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ed4eab9011efc07 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ef71aa5bab13446 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8facc0024aaea908 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8fc1b83fa4f98753 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9002ff01794b7e9f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d7163d39c087c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d9e0c9950eeb2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900e8779ba989db4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90627bf1cef11c1a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9064aeeb2fb5b513 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90eb3c31a251fd0f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9111578eb82e8537 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/916fa63fb72a63a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91730a8c226143a7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/918065afce52a593 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c25a9b8558d508 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c80386e20311f0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/927cc88826cbf642 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/92f75f690317ace3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/932c87094de84470 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93accc70638e21d8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93de619e549ecfdb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9407bf32bfe275e8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/943402037ef9f6ce create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9497829c83f3f80c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95018fbf56108782 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9501dfaf3a107867 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9509988895e6a91c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951430e91bd86fe1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951de4b4c2c1484b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95304c9e88b86c7e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9559e4e0f0b83cae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95e94fff32a84340 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9690cdb74c6d4260 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96aa77714f767a55 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96beecbc0797c5cd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96d6bcdfce28539a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96e2233445428ee1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f6f02cb9bcb915 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f7d7de339f50e5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96fca31a47531da2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9712b1084cc66fed create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/97f46dc902a00d03 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98602791350052ce create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98685c8b2e42d5e6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/987ae6c24172152a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98bf1c716214adf1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/992e5083b877dad7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9933b54c48c55164 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/997667d2790f81fd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/998d79f16258ff5d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/99a908b2ca797ebf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a139d7e593b2417 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a72843904a8dde3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a7b38856796f7c2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9ae31f36059bbb30 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b0e7fd08b5ec0b8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b6cb33cb07d167f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b926f5e672f3274 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b94ab4626969b93 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9baebf3a37e99756 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bbf569b91dee7f9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bd47020a2df4837 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9c9f06af0c8ad7e0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9cc334dace5c05e6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9d490e4b159d740a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9dbeba4a59dc0732 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e04fbd9ef09274b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e403446f6483026 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8ca562df5553ee create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8df639abdf5b9c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eea2291fc0db312 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eebf75230cff9cb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f08285ec88c9fb8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f10ca5c8ce8e8cf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f3e3c17d5ae678f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fc4053683ab3818 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fcebf950d51fc66 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00d838d374e42e4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00f3a8e67bec792 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0620bf0bff3ece1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0f953623d768c69 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a122ebe2e4c8c391 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a12a9f1a0b0a2e01 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1656a466e6b2add create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17751b04fefe869 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17ada11b5ac7ce4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a19d2156b5ad480c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1bb0f7d041fb7a5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d18e8d8b37abdc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d76b3725c64ef1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a222de2d445d0bf9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2294c73fbac76d4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a23d02d683c00837 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a24a16dcdf3fd2d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2775816e8d07026 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a286bea41bff43d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a3bd8e4024e86aae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a411f5b6dcdfc675 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4278c9f4eee8a51 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4f38b0e5b633cae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a518d0e7a449c8c5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a570c41da6adf3b8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5821327c877103c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5b0615a3564645c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a65c4b3987955cd4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6ad72bd3d35a6e9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6d7a274e1c79b9b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a74d2dd675e5ab9a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a75dad34cb8695e6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a77aad158a170fd9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a789de25e9a49696 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7aa6a969ee0ef15 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7b69f17e4f7e3b4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7bb1f0d34931e4e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7e23f604e0cec13 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7f059f27127b515 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a81807d6d61776b8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a82bc2c5b88fb925 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a855bafe7e870574 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a8b8cfa3b1748790 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a96288019e234164 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aa5b15079d3e4eee create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aad6210dcbbea4bb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ab66ee0b44bf65dc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abec1dc02a761db0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abfa18bff2a6ffce create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac38809eba7845d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac460043b4bef24b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac6b13bea9827302 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac911464b58abce9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aca96c0783a88ef0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acbc971caae0c0ec create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acccd2401d856938 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acf9f36bb222b8bd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad2b81b6116cef08 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad3c2399cbc78e62 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad7f4f4df702eafd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad9b2b62fb74f120 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ada7a5d1b60ebee0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adb71cf50040e325 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adfed662a4afc794 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae17406d87dba636 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae1b95a112a69f6b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae4c72e6f3b65965 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae9424b947172ebe create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aea8c6730621e8a4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aeb08373369c7f43 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aed0cb73c5ddb9b0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aee8100d6de5d992 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af025400b3fa6e1e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af18844113efe7b7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af2a0a3103c89f9b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af6d9e7170e1d13d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af9e46916af1506c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afab3a31b580a9e2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afea89c4ff9cac8c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b04c74fbf4ad19cc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0732cbca9bd2f56 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a01dc4cc72d1ed create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a2e0d1a132a7be create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0b0dcc02128bfea create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0c292e1c902fee7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b107c4c5bddf2c28 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b18d6b698bed547e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b1de9de010211d56 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b217ca44dd0d43a4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b22d9774cc448fdb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b246cc90c1223f5e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2520315a05aad0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b276145ed0f6626b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b27851cfc14abf44 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2fbc68dd3165bf1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3295345877ff28d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b346f041b69c405c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3881d58effe5f5b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3d316f6b358606e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3e70489d24e1e97 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b42576f6a0d56d55 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b436f2f7b0101c0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b439156d6ad57b34 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b44eafa1da812573 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b45849ad9dd28918 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4a314033e7b0159 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4d70d40d63be9f1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4f84a20be18ac98 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4ff16edf5b2922d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b52e1ea4aba5592d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b54b7cc3e97043f8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b56d78c25315b1e3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b590a871a517c1fe create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5a8b2df80440e54 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5d8be61df2e6c1a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5e751484160d828 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b62491f59d4ce799 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b64be398b0a10fed create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b6fe7e111a31855d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b725adaed70286ba create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7328c69e0d0be66 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b79d5ca815095e42 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7b5c6cd9d43bb91 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7f4645fe6328097 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b801b09d0dfaa5f2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8898660bbba98a7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8c3845783a76ec9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b93f364ad6cfb8c1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94308e7a707b006 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94acd1875b27423 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b98ed8f63ce4b292 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b16509f80bdbf7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b6ac4e85c72377 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba03af0e9526277a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba3ae415959db5f5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba44de5149224ef2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba4da497fc7f7dd6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba5b51ee7213be7b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/badd1a4022848b57 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb31178e587047ec create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb7d8b7ded809867 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb82ecfb8282442a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bbc76a61b04c2a3b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc1066f31a5fb3f3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc532c780afe5de6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc7163ee81864233 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc8b3b87167e2f7d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc99fd8d1a515552 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcc4dea23c7c5ee4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcd2495f5f79f77a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcfab1f756d2e24a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd27d8cda8fa990c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd47302a402fdfab create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd7bb32b4fc7ce79 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd949afbd20563a9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdafbe18d202e537 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdbb5a72c9d3e4e1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdd0545da69deb61 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be1312d2a236dbd8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be213d03ebd516c4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be443cfe05beb71b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be49fd648c446ad2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be6c9f9cf24eab39 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf06da3cadbdfbef create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf22d92546932a6e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf2546822017de95 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf7549ff7bad4d64 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf8eb982624b82c0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf9ced8cc2ba701f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c056f2671928349c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c06ec10838f0dc12 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c082c3c0a13cacc7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c084835d17c9ec12 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c095718d75b5a474 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0daa716d6a111c6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0e79ff5ce15b691 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0ff0fdfceef11f4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c10bf222925edc9d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c156d2b38f1c0de4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c15a4c62e3c36cd9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c1950223dbf5007e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c199238d9de51473 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c19a52a63f1592f5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c209b87b2fc242d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c267443f2d089f0d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c26866d6315881ca create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c27f537fff3a8fcd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c29187d1e1ff7e4f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2935d50a8251826 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2a336fb46d90683 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2b30901e1e4062b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2d954444c29c4d1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c305146a4b8c4b87 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c319a472c3065d7f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c389fb8592b009f8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c38bdfbeece0fead create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c396eb0a65e3a52d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c3e1e40cfc046982 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c402b91b6ef79c38 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c42fc2de34cd76fa create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c45479572672a57d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4e949c139ec2180 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4f33b65deacc8fa create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c537a340655e527c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c552c05438b74b1e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c569380666f53c0d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c56a965e60a56259 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c59fa47b4a9d26bf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ad6957121b5593 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ba227e2e5ada5a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5bdf80813ae4b47 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5d98c8ca09b35b8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5e60e677ba77a6e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c67cff6578b19ebc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c71fa99285da850d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7220ca12a4ef8a7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7250856c0a213df create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c74aee6aae305bce create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7a66e35912445f1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7da36c985259cd7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c8567685ad259e52 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c85e0cac0963afde create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c87b3385d68fcb4c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c909dc499df33263 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9325f0fb91579c8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c94bacb2debff0bb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c977d8be82ae65e8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c992f9cf30d97b42 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9da8b18f8e12f60 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9e63caa029986bb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca2d648a3cb0c759 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca52c065f613e798 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca92b9222dd2d8e0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/caf81e9797b19c76 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb05e16c05ad1ebb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb8ada551a7b1103 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb981ff836d2f8ef create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbd0e0fa88a03817 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbe291ca2e13acc7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbf32e563c060c20 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc4a7b089c77e204 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc7e54b080bfb28a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc92c0640561df14 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc9a5e6c88270c67 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccbc2aaee70f9aa2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccd6eaea73cf3985 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd23583379916d06 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd68d386a5ec2ef0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd9db6f520f31525 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdbb6c57c8b92a0c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdff55c9c139f0f6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce37bbd59bea0571 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce3b3204fb117015 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce7d1b55ce99c810 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce8053e68e69ee6b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce899e8c955f8d55 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cea76eacee2e91b7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cebb4b4b42665e44 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf57287860d71fc3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf8eb840fdfe52e4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf97e422eface2da create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf99b2bf4e83673d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfbbf822a66b7932 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfc50e2e9ed64420 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0004daf29ea03d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d00d1817fa9a9ae4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d01eda585945312c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d04474c9d020c8d8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d06daf89e408f49f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d09365b72d3925a2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d097ca16a70b8f79 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0bbb79b562f6415 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0c856dbf7154d95 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0fcef4d7cce66f5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d113f09715657b14 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d115976bedb0cfcc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d11f1208ce01c968 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d28b9bfa056de288 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2a3b57f94a2698c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2efdd57c6c51d01 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d31a2eaf102c0e92 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3396abfa54f2a94 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d34b3ac54bd82a22 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3b3ee9484b292af create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3fdce896e7e9ab9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4305711e8aca01d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4345d0b133285a1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d445da7f776378f0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d48f74efeef4222e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4b2bd124f3f2dc9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4d4eba6ec26663c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4ef06e7d9a17553 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d520a072a3f7f539 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d53436565d2ac971 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5c6233f34e10dbe create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5dfdc5b58cff399 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d611700b16e36251 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d614d90e1b994d8e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d63c0b44fcdcf512 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d648bb6e12a71535 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6970b0297164416 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d69d73fa06173481 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6d4e437762b5339 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d74848e91e282547 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d768496e51d5d7a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d7be098f1a144539 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d80a76d19d961333 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d850c0dec6bbcc67 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d89f0b98e6a21368 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8f12be090eebd2b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8fd8ecd00d977eb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d901ad3f9288692d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d903f1af04618bee create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d917b443825d01fd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d91c35fad05ca52b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d98b2cd76a0d80b6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b0d3bd2cdd7aff create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b332edef751e77 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b60512bd8ee3d7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e4f00ec75a1350 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e6ddf0e0bedbbd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9f719ec5581eeae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da08e2026943635a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da1568ea7ea892cf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da19b92fbc78d1e9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da5a1734522656c9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/db2480c0e62b982d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dba0c13519a4b8d1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbc62d7c5ed60a7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbdb26c80952cdc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbd5e5c836fd2581 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbf270c8c2cbe97d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc0b48adcb6f3422 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc2693608f14abc7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc33e41f97c5e722 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc54cb7e91d2f38a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dcb7dbbc5633c823 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd114954c6581eaf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd56a42edd44a31e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd857fcb979bfe7e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dda536b0c6c477a4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddc94258c6d436e7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddd7122d6b920c0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddcbaccc19776b2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddf1846fceddce3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de0ea661f505081f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de7d39a9e883a7a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de807a203aa69aa5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de811a258abba75b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/deaa5873c0f69efc create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dec0f6f47e85a369 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/decc7a5ecb5a678b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dfc84ff236d027b3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dff21a19e1e06332 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e00c3868c3521fac create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0239b7e360550d4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0253e58c1278db5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e09446469e38d4c0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0a4ad169f562276 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0bea26cbe05f309 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0c36c194e38abe2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0f13d706712c27c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e115e0e92c80ae81 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e116bb5f3500c008 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e18f73c8b648a004 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1b0253f249a77c7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e2857863034da3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e60c8715020585 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e205aa29bf76e48a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2078d43c8b391ad create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e225d447330fd2d6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e24dbb6e8096342c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e275d1372d1784ae create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b683bfacbdf49d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b838c1cd418265 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2bdcf284e58ecc1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2c21d38856e15a3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e329ddf4a563f52b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3443030b91d09bb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e37da7df2b3a7988 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e393a5bcca42e005 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3a90ef85cf7113c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3aba5f05fdcc281 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3e7e02a2abca655 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e406d8c2f357a6d5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e40aa8747281bb90 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e42c878ccd08e971 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e44a59b4cdc0cacf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e485a079130adb24 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e48eba5e1fdb70f1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e49ec1803831bfde create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e3d4f0c2a095bf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e6de5c4d070d5a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e561b1a6635012d4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e56de0253e4ac6d0 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e575ff427148d2e8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5b132c3dc144a1e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5d52df97e83fc58 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5db93343fb3edb3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5ed7ad408f72801 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e6337bb8e6ea554e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e67d368cf3893078 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e69aa5e6d8347a53 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e71530363766229e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7446f3b53e5995c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e748e617b5b662a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e76374a135069f6e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7b9fcb7a1504079 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e84efb19fd22e8c5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e855e5042703670f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8c144ae0d88da30 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8efc09fea15c950 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e983c1e2d8024577 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e997f1b03f124738 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9db4a86d29a8ffb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9f2354413be55de create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea0883ad2aae25df create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea15bea42c0b1458 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea1b06dab23ae957 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb3c6a1fdf621ba9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb44328c43e5510c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb6a2a3f8b7d110d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb83bbeda55f93a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebb875bea50d13ac create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebfbe8d3148e12d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec0555c32a28bf01 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec13281f833c182e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec28c543b37bcd7c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec3ce8bc0814fd37 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ece074a67500e91f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed01fc14fd793af8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed11854575aa49fe create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed1cfd5aec6d31a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed26ee7f25abe982 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed5e0720bf7e1d6a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed7a993361f81acd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed9996cc06c7e40a create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edb2d198614a4d5d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edf49fb865561e1e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee5f4b35d3ff43ef create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee859b0be6207a08 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eef57ef8de1c568b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef0f4ac5727c5f3f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef2084e81d2a294d create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef296d064753dd42 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef68162edd93c9e5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef71fde1891bda50 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef9bda9e87adbdf6 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efca6f02c1f797d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efcd1e172071b7ff create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f008d8d0ab76d823 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f015d537c55ec458 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f01ff1d7756f84fd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f03556ff2bbaf2cf create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f05f7a9adc2d4095 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f07212dd70d382f5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0743476c37c6590 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f085b9c9fba071d8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f091466478071ea2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0969002b4db643c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f09787e2c0d12747 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0cb54f6f7c56264 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0d1fcd9532e5dad create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f12b8c9c4f8d9e16 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f18994f03cd04f6f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f1e1458b65255f36 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f21d4ed67679d9b9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f270391d6401b4ba create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f313804d4d795ef4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f37f9bf7a97be874 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f3900306fcf37218 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f402d1f56b5650a2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f417240aa2694777 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4221bf11814c7e4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f44323e2fe8e8ec7 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f468926de4bf57cd create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f47ab785e4b6efb5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c064424618cf0e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c4d1378596d1ad create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4da053d73d4283f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4e70c3c50d3b4d4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f539d6d7565dac43 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f557c8001a967662 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5aad145f6286289 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5acc4a823dc524c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5bed6c713f596ce create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f616afefd175df26 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f62ae893b48fdc38 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f690db53c2cbce49 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6b608e206e2174f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6ca1fa82763be51 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6cb11ac365951a4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6efef1c6e99e5da create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f70709a3d511383f create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f72cf33da72ff2e2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f781654f723f7727 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7bf3d9f80124ab2 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c26387aef5ca5e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c3739792afa3b1 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f81d7a4c2f05c28c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f8882b377da1c743 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f88af51e6e25a098 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f9d15925155ccdb9 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa0583743b297e08 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa158ab43afdd881 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8d6e401d166506 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8ee025131d2498 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa9e4d6e36fd8b04 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fad50501df8468d8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fadf92e9a5471169 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb25f9e470fb4c61 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb40b9a187b0a625 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb6efac9d8ccf9d3 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb77b0ce3bdc5160 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb976f117daea11c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbc96b28a8a7171 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbcc13fbc666d6e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbd68834c9062e9b create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbfe57fe8412c248 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc37a0cc6f7f93af create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc4fed5cf1340b7c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc62bfa6eaa68c1c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fcb47ed59cd7a682 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fccb4d052ef32dfb create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd117b868008bb64 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd1d894dd9e09352 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd5e7e7c4db744a8 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd694eec3357e7a5 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd91770d8a3c3474 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd918cc08f89304c create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fda4a0d98355999e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb11bbde86b3a48 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb89bc248511faa create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdc899c15feecc72 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe24f332ba32924e create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe6d812fbda6b1f4 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feb5ad1cbffc9a64 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feee500cef1cc457 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff1baf4b448e5876 create mode 100644 test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff7e316a5a0fc914 diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/000807b52481dae3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/000807b52481dae3 new file mode 100644 index 00000000000..f05796d8d26 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/000807b52481dae3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa400B00\x7f\xff0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0061fa19679be87a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0061fa19679be87a new file mode 100644 index 00000000000..2bc96ae90cc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0061fa19679be87a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3\xdc") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00833b633bee1a44 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00833b633bee1a44 new file mode 100644 index 00000000000..1598199c8be --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00833b633bee1a44 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc0\xc0\xc0\xc0\xc00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00a9e820b4bc2961 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00a9e820b4bc2961 new file mode 100644 index 00000000000..94fe418e61f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00a9e820b4bc2961 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00cd3d7f48ba27f8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00cd3d7f48ba27f8 new file mode 100644 index 00000000000..a8f16eb215d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00cd3d7f48ba27f8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7fq000000\xec0000000000````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00eac722b9e18132 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00eac722b9e18132 new file mode 100644 index 00000000000..5841fd2c96e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/00eac722b9e18132 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000\x01\x000000\x840\xf901\x84\xf900\xf901\x84\xf90000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0123042ff916aa07 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0123042ff916aa07 new file mode 100644 index 00000000000..13563f6077e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0123042ff916aa07 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0155c3b9823786c1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0155c3b9823786c1 new file mode 100644 index 00000000000..97fcbb306be --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0155c3b9823786c1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f00000008") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01565827aba3c17e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01565827aba3c17e new file mode 100644 index 00000000000..f848d7b3917 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01565827aba3c17e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xe8\xed71107Ac98B00XBXCAC\x7f118B002A017X 0000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/015c6785ec6f21a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/015c6785ec6f21a3 new file mode 100644 index 00000000000..be9a8161ffb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/015c6785ec6f21a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Q00000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01971d6f1195d5c4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01971d6f1195d5c4 new file mode 100644 index 00000000000..0e3c555d8a9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01971d6f1195d5c4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4b\xf90000e0000\xcd0e00\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/019d088b0b52ee51 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/019d088b0b52ee51 new file mode 100644 index 00000000000..5bc2b0219f0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/019d088b0b52ee51 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01adb020b9b0adcf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01adb020b9b0adcf new file mode 100644 index 00000000000..1da6bc2400c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01adb020b9b0adcf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xdb00000000\xdb0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01d29abf5239ae2b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01d29abf5239ae2b new file mode 100644 index 00000000000..36a6674a557 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/01d29abf5239ae2b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\xf7\xf7\xf7\xf7000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/021310d2523fc753 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/021310d2523fc753 new file mode 100644 index 00000000000..4b13df03a22 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/021310d2523fc753 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xac\xfa00000000000\xfa00000\xfa0000000\xfa00000\xfa00000\xfa00000\xfa00000\xfa00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02218df1da65a57d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02218df1da65a57d new file mode 100644 index 00000000000..0ba7d8d7ac2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02218df1da65a57d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfB000A0\xbf@0A00B000@0\xffA00A0\xbfA20@0A00A10B000@0\xffA10@0@0\xffB00\xa2A0\xbf@0A00B000A0\xbfA20@0A00A10B000@0\xffA10@0\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/022ee388f166fe8c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/022ee388f166fe8c new file mode 100644 index 00000000000..9747ff53dae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/022ee388f166fe8c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xbf\xbf\xbf\xbf0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/024f06a214b7b46a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/024f06a214b7b46a new file mode 100644 index 00000000000..8744d82c48d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/024f06a214b7b46a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf001020\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02b31453168e4807 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02b31453168e4807 new file mode 100644 index 00000000000..b331a625796 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02b31453168e4807 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion0Dkind0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02d174b75863f502 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02d174b75863f502 new file mode 100644 index 00000000000..1b2cdd1f7a9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/02d174b75863f502 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3\xc2Xe80710002B10B0008011202000010000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/030eac6dc1077232 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/030eac6dc1077232 new file mode 100644 index 00000000000..04038384c99 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/030eac6dc1077232 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00B000@0A10@0\xffB00\xa2A0\xbfA0C000B000A0\xbfA2000@0A00A10B000@0\xffA100000@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0316a3d448ba63eb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0316a3d448ba63eb new file mode 100644 index 00000000000..bc4778936b3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0316a3d448ba63eb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc5;\x9200000000\xc5;\x8d00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032a948e21e5eada b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032a948e21e5eada new file mode 100644 index 00000000000..535ef9aa18e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032a948e21e5eada @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9c0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032ff502665d340c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032ff502665d340c new file mode 100644 index 00000000000..3197dcfc729 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/032ff502665d340c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc0\xc00000\xc0\xc000\xc0\xc000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/034e2f7daa3a5eda b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/034e2f7daa3a5eda new file mode 100644 index 00000000000..d711668b3ec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/034e2f7daa3a5eda @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcf\xcf\xcf\xcf\xcf\xcf0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/03665273be54d94e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/03665273be54d94e new file mode 100644 index 00000000000..b110d029c24 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/03665273be54d94e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x840\x84\x8400\xf9\x00 0\xf9\x00 \x840\x84\x8400\xf9\x00 0\xf9\x00 00\xf9\x00 0\xf9\x00 \xf9\x00 0\xf9\x00 00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/037c1228970e2af7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/037c1228970e2af7 new file mode 100644 index 00000000000..718081f8a4f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/037c1228970e2af7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04076c771b933181 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04076c771b933181 new file mode 100644 index 00000000000..426a8b09b94 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04076c771b933181 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc70000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/040d979e62625d33 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/040d979e62625d33 new file mode 100644 index 00000000000..fedfd4c148d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/040d979e62625d33 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2D\xa80000@0@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0446aae350833264 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0446aae350833264 new file mode 100644 index 00000000000..eeb3fff48be --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0446aae350833264 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3@") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/046444026be59095 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/046444026be59095 new file mode 100644 index 00000000000..b58dc3f6a04 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/046444026be59095 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3@\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xff\xc3@\xffC0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/048415c326f3744b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/048415c326f3744b new file mode 100644 index 00000000000..4ea0e2cf52b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/048415c326f3744b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd7\xd7\xd7\xd7\xd7\xce\xce\xce\xd7\xd7\xce\xce\xd7\xd7\xd7\xd7\xd7\xd7\xce\xce\xce\xce\xce\xd3\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xd7\xd7\xd7\xd7\xd7\xce\xd7\xce\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04971895ddccadde b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04971895ddccadde new file mode 100644 index 00000000000..4c5c7e40139 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04971895ddccadde @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbfb0\xec0a\xee0a\xec0a\xec0a\x9f0a\xec80a\xec0a\xecd0000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04fb86a49a32c851 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04fb86a49a32c851 new file mode 100644 index 00000000000..2c20688b595 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/04fb86a49a32c851 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xa1\xa1\xa1\x8200000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05758249dda61b55 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05758249dda61b55 new file mode 100644 index 00000000000..eb573a3fb4a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05758249dda61b55 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc3A00\xc3A00\xa6\xc3A00000000\xc3A0000000\xc3A00\xa6\xc3A00\xc3A000000\xc3A00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/057990b980604f49 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/057990b980604f49 new file mode 100644 index 00000000000..019715a1701 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/057990b980604f49 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xbf0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/058d48efab3bd0ba b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/058d48efab3bd0ba new file mode 100644 index 00000000000..9f75434b2dd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/058d48efab3bd0ba @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xb1\xb10000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05cee13c8c223d0a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05cee13c8c223d0a new file mode 100644 index 00000000000..e661720b9f8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05cee13c8c223d0a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\x84\xd9008") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05d7f4074cab8c87 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05d7f4074cab8c87 new file mode 100644 index 00000000000..f97e05a9b86 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05d7f4074cab8c87 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200A0\xc0d0\xcb00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05f74c351e3b7300 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05f74c351e3b7300 new file mode 100644 index 00000000000..9d4513e0e75 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/05f74c351e3b7300 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0000\xe7000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06027f6cef50b60c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06027f6cef50b60c new file mode 100644 index 00000000000..fbd0f9ce2a4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06027f6cef50b60c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("l000݀݀݀݀0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0622c074d8496e4b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0622c074d8496e4b new file mode 100644 index 00000000000..fe63e0ce82b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0622c074d8496e4b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("{\xfe0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06400d50ee9156c1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06400d50ee9156c1 new file mode 100644 index 00000000000..5fbfc1cf739 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06400d50ee9156c1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x84\x9f0000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06d4ca5da82e88e2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06d4ca5da82e88e2 new file mode 100644 index 00000000000..e15c000615c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06d4ca5da82e88e2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\xc3000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06ecd2ae4c12c117 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06ecd2ae4c12c117 new file mode 100644 index 00000000000..36dcca72823 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/06ecd2ae4c12c117 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2e00000\xf9|\x00@\xf9|\x00@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07078f00e448f6b6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07078f00e448f6b6 new file mode 100644 index 00000000000..39f0547e822 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07078f00e448f6b6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9|\x00@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0726373ce1d77dc1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0726373ce1d77dc1 new file mode 100644 index 00000000000..5922e709127 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0726373ce1d77dc1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.0000'\x000000000\x04\x00\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b0\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1fA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0797e86c900b4725 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0797e86c900b4725 new file mode 100644 index 00000000000..15da5c7b829 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0797e86c900b4725 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xb1\xb100000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07afe4a8c9624fd0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07afe4a8c9624fd0 new file mode 100644 index 00000000000..f63154aee87 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07afe4a8c9624fd0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x8400\xfa\xff\x80\x00\x000B000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07c96f6b389dc56c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07c96f6b389dc56c new file mode 100644 index 00000000000..d965ad4ff80 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07c96f6b389dc56c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\xff\x9f\xff\x9f\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07d2eb30c88dc1bf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07d2eb30c88dc1bf new file mode 100644 index 00000000000..6c9a0855972 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/07d2eb30c88dc1bf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfbCX000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08143bd289bf43ff b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08143bd289bf43ff new file mode 100644 index 00000000000..265e03ca9ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08143bd289bf43ff @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/084011b5eacda5ba b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/084011b5eacda5ba new file mode 100644 index 00000000000..ebbe97b13dc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/084011b5eacda5ba @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_@@@@@@@@@@@@@@@@\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08567900dff9a38b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08567900dff9a38b new file mode 100644 index 00000000000..e295c4929f2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08567900dff9a38b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3@\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xff\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xff\xc3@\xff\xffC0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/086934e2def8f960 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/086934e2def8f960 new file mode 100644 index 00000000000..fdfe66ea5f7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/086934e2def8f960 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xa00\xa00\xa4\xa00\xa00\xa00\xa000\xa00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0894b6d0227b1c27 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0894b6d0227b1c27 new file mode 100644 index 00000000000..d7a648cea4a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0894b6d0227b1c27 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf90000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08ab9ede3da9b81e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08ab9ede3da9b81e new file mode 100644 index 00000000000..9b6b831e99f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08ab9ede3da9b81e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900C000\xd9000\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd90000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08b5005ef5ee3418 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08b5005ef5ee3418 new file mode 100644 index 00000000000..0493c9c00e9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/08b5005ef5ee3418 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3\xde") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09199ac2674d1f9b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09199ac2674d1f9b new file mode 100644 index 00000000000..57ba9f158bf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09199ac2674d1f9b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\x0e7A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/095b593f87f4119c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/095b593f87f4119c new file mode 100644 index 00000000000..a0a57d4142e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/095b593f87f4119c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J\x00\x7f000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/096be4d6bff38a90 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/096be4d6bff38a90 new file mode 100644 index 00000000000..a551f207953 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/096be4d6bff38a90 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200C000d0\xe9\xb10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09c01625299a6cc3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09c01625299a6cc3 new file mode 100644 index 00000000000..a0ff5c6d33a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/09c01625299a6cc3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb4\xd20\xc90\xd50\xd20\xc90\xd20\xc90\xd50\xd20\xc90\xd50\xc90\xc90\xd50\xd20\xc90\xd50\xd20\xc90\xd20\xc90\xd50\xd20\xc90\xd50\xc90\xc90\xd50\xc90\xc90\xc90\xc90") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0a4ea61fbc589ffc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0a4ea61fbc589ffc new file mode 100644 index 00000000000..ee27776f5fc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0a4ea61fbc589ffc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf00000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0aeae2e710ef977d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0aeae2e710ef977d new file mode 100644 index 00000000000..656ec90d1f4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0aeae2e710ef977d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf00000000@000000000000000000000000000000\x84\x84\x84\x84\x84\x84\x84\x840000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b10abfae0a3f193 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b10abfae0a3f193 new file mode 100644 index 00000000000..7f76849ca5f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b10abfae0a3f193 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\xe9\xad0000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b5133584a0ebcfc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b5133584a0ebcfc new file mode 100644 index 00000000000..f0de6a16453 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b5133584a0ebcfc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc0d00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6c8d7f641106f3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6c8d7f641106f3 new file mode 100644 index 00000000000..904c5e10f24 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6c8d7f641106f3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6efc6272585b39 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6efc6272585b39 new file mode 100644 index 00000000000..7b947f51726 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0b6efc6272585b39 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf4\xf400A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0bd4659e514f7549 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0bd4659e514f7549 new file mode 100644 index 00000000000..15da4742669 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0bd4659e514f7549 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c0757ec3098e0dc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c0757ec3098e0dc new file mode 100644 index 00000000000..cf2306f1709 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c0757ec3098e0dc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xd8x\xa2e000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c1ecca1593a8f91 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c1ecca1593a8f91 new file mode 100644 index 00000000000..61c372891ce --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c1ecca1593a8f91 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfbX0000000\xfbX0000000\xfbX0000000\xfbX0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c27b17b6ccd98b0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c27b17b6ccd98b0 new file mode 100644 index 00000000000..339706bd28e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c27b17b6ccd98b0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfb\xff\xff000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c432ed41517e793 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c432ed41517e793 new file mode 100644 index 00000000000..c9990d20230 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c432ed41517e793 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000C00\xc580") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c8ac07e440fe9ae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c8ac07e440fe9ae new file mode 100644 index 00000000000..99f8dfb27b7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0c8ac07e440fe9ae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf`0`000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ca523556c48488c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ca523556c48488c new file mode 100644 index 00000000000..1db0964b53a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ca523556c48488c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3@\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xff\xc3@\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0cfc70c67b86ce4f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0cfc70c67b86ce4f new file mode 100644 index 00000000000..0fedb00f532 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0cfc70c67b86ce4f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa80000\xf9\x02000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d1ab1f3874df95f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d1ab1f3874df95f new file mode 100644 index 00000000000..9afe2c9d0d7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d1ab1f3874df95f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6459169fc0e922 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6459169fc0e922 new file mode 100644 index 00000000000..eed2ff780b2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6459169fc0e922 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa\xffa0a0a0a0\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6cb9af10ebd9c5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6cb9af10ebd9c5 new file mode 100644 index 00000000000..197490c3f1a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d6cb9af10ebd9c5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40000\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd8\x00\xd800000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d7efebfbe993205 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d7efebfbe993205 new file mode 100644 index 00000000000..5e9d63e5080 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d7efebfbe993205 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbc") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d86a53c75eae3f9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d86a53c75eae3f9 new file mode 100644 index 00000000000..71181bd0291 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0d86a53c75eae3f9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f\x9f\x9f0\xff\x9f\x9f\x9f\x9f\x9f\x9f0\xff\x9f\x9f\x9f0\xff\x9f0\xff\xff\xff\xff\xff\xff\x9f0\xff\x9f0\xff\xff\xff\xff\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0db21fe48066525e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0db21fe48066525e new file mode 100644 index 00000000000..1cdf7feb395 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0db21fe48066525e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1\x0e\x9f\xc1\x0e\xc1\x00\xc1\x0e\x9f\xc1\x0e\xc1\x00\xff\xc1\x00\xff\xc1\x00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0de844a5eb1051d5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0de844a5eb1051d5 new file mode 100644 index 00000000000..fc7cc6b5f69 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0de844a5eb1051d5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e151544729b7a88 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e151544729b7a88 new file mode 100644 index 00000000000..0ec842838be --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e151544729b7a88 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4b0\xfc0g000\xb50000e0\xb20000e00\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e317f6a5078cced b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e317f6a5078cced new file mode 100644 index 00000000000..e0167ce60e3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e317f6a5078cced @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x8800000\x8800000000\x880000000000\x88000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e74c62ab1ea7f03 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e74c62ab1ea7f03 new file mode 100644 index 00000000000..72a020efb22 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0e74c62ab1ea7f03 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xc6\xc2\xc600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eb92c00916f8eaa b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eb92c00916f8eaa new file mode 100644 index 00000000000..6bdeb60fe90 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eb92c00916f8eaa @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc0d00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ebdd82408a7cf69 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ebdd82408a7cf69 new file mode 100644 index 00000000000..009d7c22032 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ebdd82408a7cf69 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("l00耀00耀00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee0509a417bf9bb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee0509a417bf9bb new file mode 100644 index 00000000000..08269d9b2c4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee0509a417bf9bb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xf9\xf90\xf9\xf90A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee9c2ff2cd2bf51 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee9c2ff2cd2bf51 new file mode 100644 index 00000000000..4d1bfe6edbf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0ee9c2ff2cd2bf51 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\x112A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eea516fe5403761 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eea516fe5403761 new file mode 100644 index 00000000000..9a0a90618b2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0eea516fe5403761 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\x1b\x82000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f33c79b262b0889 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f33c79b262b0889 new file mode 100644 index 00000000000..5a4637d84d1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f33c79b262b0889 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa8\xf9\xff0000\xf9\xff000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f3530f25bd10aca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f3530f25bd10aca new file mode 100644 index 00000000000..c198dbdc5b9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f3530f25bd10aca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\x9f\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xe100\xfa0\xfa00\xff\xfa0\xfa00\xfa0\xe100\xfa0\xfa00\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f4a95d1bfb247a1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f4a95d1bfb247a1 new file mode 100644 index 00000000000..b29b0223461 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f4a95d1bfb247a1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\xff\x9f\x9f\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f8b85bed559a5c6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f8b85bed559a5c6 new file mode 100644 index 00000000000..1cc82d7b008 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0f8b85bed559a5c6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200C000\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd50") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fca77f3dace92de b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fca77f3dace92de new file mode 100644 index 00000000000..7520ac506a2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fca77f3dace92de @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc30000\xc300000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fe970c56f946286 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fe970c56f946286 new file mode 100644 index 00000000000..690fecf7177 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/0fe970c56f946286 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1027a6c4c4284624 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1027a6c4c4284624 new file mode 100644 index 00000000000..0096ab43e85 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1027a6c4c4284624 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/106d6a4185355582 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/106d6a4185355582 new file mode 100644 index 00000000000..998fced0624 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/106d6a4185355582 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00A1900\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1073dd5af1ca163c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1073dd5af1ca163c new file mode 100644 index 00000000000..e9e2195010e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1073dd5af1ca163c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xb900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1092721f8424f12e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1092721f8424f12e new file mode 100644 index 00000000000..b5c772475ea --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1092721f8424f12e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X<\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10d1b0ee22c38311 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10d1b0ee22c38311 new file mode 100644 index 00000000000..56ca08e1a95 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10d1b0ee22c38311 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000XX00000\x7f\x00\x1f\x1f\x1f000000\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1f\x1b\x1b\x1b0\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f00000\x7f\x00\x1f\x1f\x1f000000\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1f\x1b\x1b\x1b0\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1fA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10feb66562c7be5d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10feb66562c7be5d new file mode 100644 index 00000000000..a25ee8d4d3b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/10feb66562c7be5d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e00000\xfbCX000001A0\xfbCX000001A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/111575bb85261a49 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/111575bb85261a49 new file mode 100644 index 00000000000..4dc3a3667c6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/111575bb85261a49 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A080B00\xa2A080B00\xa2A00B00\xa2A080B00\xa2A080B00\xa2A080B00\xa2A080B00\xa2A080B000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/118f7faab99c7197 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/118f7faab99c7197 new file mode 100644 index 00000000000..d68166a9b24 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/118f7faab99c7197 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/11a4b83263841094 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/11a4b83263841094 new file mode 100644 index 00000000000..2484874d344 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/11a4b83263841094 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb0\xa30000000\xf60\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xe30") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/123577a397cefed8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/123577a397cefed8 new file mode 100644 index 00000000000..976518c23e6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/123577a397cefed8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4e00000e0000\x90\xcd000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/124344d723e96d53 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/124344d723e96d53 new file mode 100644 index 00000000000..8296837e374 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/124344d723e96d53 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x80\x81\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/12e462996607df93 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/12e462996607df93 new file mode 100644 index 00000000000..bccfc1aa700 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/12e462996607df93 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40000\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd800000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/130f288fa770ee96 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/130f288fa770ee96 new file mode 100644 index 00000000000..12dc4cee215 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/130f288fa770ee96 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa41800D00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/133056c8023cc706 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/133056c8023cc706 new file mode 100644 index 00000000000..fb91daa87c3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/133056c8023cc706 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb5000000\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe90\xe900000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13499635388b5379 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13499635388b5379 new file mode 100644 index 00000000000..328fdc749ad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13499635388b5379 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xf50\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1357bb84529350a6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1357bb84529350a6 new file mode 100644 index 00000000000..ecb9f249db4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1357bb84529350a6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2J 1B20A0780*A22a10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13d98f91c618ce4d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13d98f91c618ce4d new file mode 100644 index 00000000000..0f5b684459c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13d98f91c618ce4d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb50\xb5\xb5\xb5\xb5\xb5\x97\x97\x97\x97\x97\x97\x97\x97\xb5\xb500000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13e270736e830e97 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13e270736e830e97 new file mode 100644 index 00000000000..b90c941fec4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/13e270736e830e97 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3K00000000000\xc3K00000000000\xc3K00000000000\xc3K00000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/140cf1ca813c0147 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/140cf1ca813c0147 new file mode 100644 index 00000000000..4a544eee7e7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/140cf1ca813c0147 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0209200A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/147e407314b383db b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/147e407314b383db new file mode 100644 index 00000000000..258c999c3e0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/147e407314b383db @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X.0000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14a2e97b07531ce2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14a2e97b07531ce2 new file mode 100644 index 00000000000..e657ae2cd76 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14a2e97b07531ce2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14e7f90d8f7e4995 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14e7f90d8f7e4995 new file mode 100644 index 00000000000..0d9381b0a8d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/14e7f90d8f7e4995 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f``````````c000a0a0a0a0a0a0a0`\xff0`0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/152996d69f524d05 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/152996d69f524d05 new file mode 100644 index 00000000000..0e48191e5cc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/152996d69f524d05 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa60000\x9600000000\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa00\xa00\xa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1532d4b326f16032 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1532d4b326f16032 new file mode 100644 index 00000000000..8369bd6f8c2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1532d4b326f16032 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb5000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1572039e7a331ee8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1572039e7a331ee8 new file mode 100644 index 00000000000..50e143ef784 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1572039e7a331ee8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900900\xd900\xd900\xd900900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1598a161948dde4e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1598a161948dde4e new file mode 100644 index 00000000000..1abaaa6473c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1598a161948dde4e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6102000\xc1\xfbA000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15b86882c95bb297 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15b86882c95bb297 new file mode 100644 index 00000000000..e3f306522d4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15b86882c95bb297 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfaa820\xfaa820\xfaa000\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15d34aa7a1bd56f6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15d34aa7a1bd56f6 new file mode 100644 index 00000000000..d79e8a7d22e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/15d34aa7a1bd56f6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x8b0\x800000000\x8600\x860000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16154c1766c9ae1e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16154c1766c9ae1e new file mode 100644 index 00000000000..bb2df345104 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16154c1766c9ae1e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4000000\xc3J00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16b92a117372fffb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16b92a117372fffb new file mode 100644 index 00000000000..cbc7faf1eb2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16b92a117372fffb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xfaZ\xa900\xfaZ\xf700A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16eaaa956764dcd0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16eaaa956764dcd0 new file mode 100644 index 00000000000..bc0af44c71e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/16eaaa956764dcd0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9X0\xf9X0\x9f\xf9X0\xf9x0\xf9X0\xff\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1712d67181358055 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1712d67181358055 new file mode 100644 index 00000000000..fa1ee7dbdc1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1712d67181358055 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9X0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/174d198e9931a939 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/174d198e9931a939 new file mode 100644 index 00000000000..b9bd7ea99b4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/174d198e9931a939 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x1b00000000A080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/179ca80ecf28bcb9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/179ca80ecf28bcb9 new file mode 100644 index 00000000000..8699852bfc9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/179ca80ecf28bcb9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("MMM\x00\x00\x02 0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/17bb062c8c283897 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/17bb062c8c283897 new file mode 100644 index 00000000000..18bcabc1dac --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/17bb062c8c283897 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\xff\x9f\xff\x9f\xff\xff\xff\xff\xff\x9f\xff\x9f\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182170b4179c2fe2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182170b4179c2fe2 new file mode 100644 index 00000000000..be2f6458827 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182170b4179c2fe2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x00dpiVersionA5555yTkin\xff\xff\x7f\xffAx") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182616785251e990 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182616785251e990 new file mode 100644 index 00000000000..7bee16547af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/182616785251e990 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40010\x800\x800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/18560d337955514b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/18560d337955514b new file mode 100644 index 00000000000..ce2d7e1d8e0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/18560d337955514b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9!0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/188aad383b55e2e2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/188aad383b55e2e2 new file mode 100644 index 00000000000..0435e139621 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/188aad383b55e2e2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900C000\xd9000\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900C0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19663275f675484e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19663275f675484e new file mode 100644 index 00000000000..a405faee021 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19663275f675484e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbCA000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19785b3eec389fe1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19785b3eec389fe1 new file mode 100644 index 00000000000..a2a28fa9283 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19785b3eec389fe1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfa0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19a84805b56aa592 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19a84805b56aa592 new file mode 100644 index 00000000000..4644b335bd0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19a84805b56aa592 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00A00\xffB00\xa2A0\xbfA00A00\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba0c4305ebf169 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba0c4305ebf169 new file mode 100644 index 00000000000..93922de0074 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba0c4305ebf169 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6000000080\xc1A0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba40d397da3e7b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba40d397da3e7b new file mode 100644 index 00000000000..72b147df1ed --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19ba40d397da3e7b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000s000000000000\t\t0\t\t00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f1b23c40597ff3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f1b23c40597ff3 new file mode 100644 index 00000000000..18b69a36fec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f1b23c40597ff3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E魰00E魰00@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f94ee780767a12 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f94ee780767a12 new file mode 100644 index 00000000000..1147300ed54 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/19f94ee780767a12 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f`````````\x9f````````````````\xff```````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1a4701d9f099e832 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1a4701d9f099e832 new file mode 100644 index 00000000000..0cb544c0ca4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1a4701d9f099e832 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbft\xf2\xbf\x91000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1af1a16279b3f910 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1af1a16279b3f910 new file mode 100644 index 00000000000..bdd9176a959 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1af1a16279b3f910 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7fe00\xa200\xff80\x7fo0000000000000\xff0\xff80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b364cc32ec7d5f2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b364cc32ec7d5f2 new file mode 100644 index 00000000000..308bce8651f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b364cc32ec7d5f2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd9\xd9\xf7\xd9\xd9\xf7\x84\xd9\xd9\xf7\xd9\xd9\xf7\x8400\xd9\xd9\xf7\xd9\xd9\xf7000\xd9\xd9\xf7\xd9\xd9\xf7000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b3cac2bc4812f7f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b3cac2bc4812f7f new file mode 100644 index 00000000000..d868252845d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b3cac2bc4812f7f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6800\xc3@0\xa6000000000000000\xc3@000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b76301aa0dca2a2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b76301aa0dca2a2 new file mode 100644 index 00000000000..67495308d38 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b76301aa0dca2a2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\x80000010A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b80eff1199317ae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b80eff1199317ae new file mode 100644 index 00000000000..f9f60ca3c57 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1b80eff1199317ae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f \xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bba1a4f81a6d82d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bba1a4f81a6d82d new file mode 100644 index 00000000000..c6435245807 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bba1a4f81a6d82d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0\xa60000i\xc9000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bd1ab9b27cc329c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bd1ab9b27cc329c new file mode 100644 index 00000000000..6c81b9cb800 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1bd1ab9b27cc329c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ0#7001000100000000000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c2e7bb09d5685e8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c2e7bb09d5685e8 new file mode 100644 index 00000000000..dc860cd22c2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c2e7bb09d5685e8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900\xd90000\xd90000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c56181179783fb4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c56181179783fb4 new file mode 100644 index 00000000000..ab2509a9c08 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c56181179783fb4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7c3d8570b61b92 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7c3d8570b61b92 new file mode 100644 index 00000000000..dd4472690aa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7c3d8570b61b92 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7cf1bcdb3d961c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7cf1bcdb3d961c new file mode 100644 index 00000000000..0e4e3ad6156 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c7cf1bcdb3d961c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd1\xd1\xd1\xd1\xd1\xd100\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xd1\xd1\xd1\xc100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c878ff2c187b7ca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c878ff2c187b7ca new file mode 100644 index 00000000000..d610a41369c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1c878ff2c187b7ca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xa200@\xc2@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1cb6dfc21ff40ee4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1cb6dfc21ff40ee4 new file mode 100644 index 00000000000..cdc23bcff2d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1cb6dfc21ff40ee4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84000\x84000\x8400\x84000\x8400000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1d559614d5eeb563 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1d559614d5eeb563 new file mode 100644 index 00000000000..725246917c5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1d559614d5eeb563 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc2J0000000000000\xc2Q00000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e05786a3c932b36 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e05786a3c932b36 new file mode 100644 index 00000000000..273db7c5521 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e05786a3c932b36 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\x8400\xf9\x00\x010\xf9\x00\x1000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e0a00ec629a578b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e0a00ec629a578b new file mode 100644 index 00000000000..ea2c5ffd2ae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e0a00ec629a578b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x88000\x10\x00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e3a1163cabc3179 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e3a1163cabc3179 new file mode 100644 index 00000000000..5573496fa2f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e3a1163cabc3179 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa80000\xf9\x00\x0000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e4f089878718782 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e4f089878718782 new file mode 100644 index 00000000000..9bdf6659b80 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e4f089878718782 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82000000000000000000000000000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e8c6d7adf692118 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e8c6d7adf692118 new file mode 100644 index 00000000000..5b13a7fd890 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1e8c6d7adf692118 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\xff00\x7f000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ea8740039165d7a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ea8740039165d7a new file mode 100644 index 00000000000..92123a7b4c9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ea8740039165d7a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x80\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1eade828d10ed7ab b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1eade828d10ed7ab new file mode 100644 index 00000000000..e2ede6c8d02 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1eade828d10ed7ab @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fA0A0A0g0000000v00ڙ000000000000000000A0A0A0A0A0A0A0A0A0A0A0g0000000v0ڙ0000000000000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ef147cf8e5a6938 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ef147cf8e5a6938 new file mode 100644 index 00000000000..79769593bb5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1ef147cf8e5a6938 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f0000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f69846c683e9947 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f69846c683e9947 new file mode 100644 index 00000000000..103d38d0aeb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f69846c683e9947 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb2800001020a\xec0a\x990b0\xec070a\xec0 0a\x99000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f7247fe6fb6c863 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f7247fe6fb6c863 new file mode 100644 index 00000000000..2716d1cf725 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f7247fe6fb6c863 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6102000\xc100\xc10000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f8c609548208aed b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f8c609548208aed new file mode 100644 index 00000000000..c788b820c19 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/1f8c609548208aed @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.0000''''''''''''''''00000''''''''''''''''00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/200a04deff8c8345 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/200a04deff8c8345 new file mode 100644 index 00000000000..72796234b3e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/200a04deff8c8345 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff0\xa00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204d465fdd594827 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204d465fdd594827 new file mode 100644 index 00000000000..393696702b8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204d465fdd594827 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x8b0000000\x80000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204e3ef83a76c9cb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204e3ef83a76c9cb new file mode 100644 index 00000000000..81254dbc111 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/204e3ef83a76c9cb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6A00\xd2000000B0080B0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/206ebbca7bdcc1b0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/206ebbca7bdcc1b0 new file mode 100644 index 00000000000..3e47ed13316 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/206ebbca7bdcc1b0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f \x9f\x9f \xff\xff \xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/210148d4e2c7937b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/210148d4e2c7937b new file mode 100644 index 00000000000..f0d7a37de82 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/210148d4e2c7937b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf9000\x84\xf900\xf900\x84\xf900\xf900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/214409825cf19cc3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/214409825cf19cc3 new file mode 100644 index 00000000000..cbf48a51f29 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/214409825cf19cc3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc2D00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21633ca2563dcd1a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21633ca2563dcd1a new file mode 100644 index 00000000000..0c90eb882d8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21633ca2563dcd1a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21726329a6158a7d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21726329a6158a7d new file mode 100644 index 00000000000..1a60f15c49f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21726329a6158a7d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\xff\x9f\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/217a783b78414102 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/217a783b78414102 new file mode 100644 index 00000000000..4882184113b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/217a783b78414102 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2187b9aee1225752 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2187b9aee1225752 new file mode 100644 index 00000000000..0a36ac4dff9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2187b9aee1225752 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000i00\xe9000000c00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21a4129d319bae08 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21a4129d319bae08 new file mode 100644 index 00000000000..68cb3bf25e5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/21a4129d319bae08 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfbC\x80200010A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22291c763b204c1e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22291c763b204c1e new file mode 100644 index 00000000000..82261975c76 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22291c763b204c1e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA0\xbf@0\xff\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/222e3b6161c78d79 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/222e3b6161c78d79 new file mode 100644 index 00000000000..4ef6a3f1774 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/222e3b6161c78d79 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa1\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa1\xf6\xa20000\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa2000000\xf6\xa2\xf6\xa1\xf6\xa200000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/223b9bc0cbcc1387 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/223b9bc0cbcc1387 new file mode 100644 index 00000000000..a457bb99e44 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/223b9bc0cbcc1387 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion9 0C00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/225c45f43aad5ba7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/225c45f43aad5ba7 new file mode 100644 index 00000000000..4b0fb9aa278 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/225c45f43aad5ba7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd9000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22913896a268e331 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22913896a268e331 new file mode 100644 index 00000000000..92e2f933485 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22913896a268e331 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9fb0\xecb0\xeca\xeca\xeca\xeca\xeca\xeca\xec\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22fd7377c8beef24 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22fd7377c8beef24 new file mode 100644 index 00000000000..1869dc1f2b8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/22fd7377c8beef24 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa61020\xfb00000000000\xc1\x1b\xff0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2333ab59c236bf28 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2333ab59c236bf28 new file mode 100644 index 00000000000..ea57bb4b907 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2333ab59c236bf28 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fA0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2334786df04575bf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2334786df04575bf new file mode 100644 index 00000000000..01907b0febd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2334786df04575bf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fF00000\xd6A\xe80A\xf1A\xe7\x9fA\xf1F00000֟A\xf1A\xf1A\xe7\xffA\xf1A\xe7A\xf1A\xf1A\xe7\xffA\xf1A\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23676eaff4ad7a29 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23676eaff4ad7a29 new file mode 100644 index 00000000000..810abb62a59 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23676eaff4ad7a29 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc3A\x00010\xc3A\x000\xc3A\x00000\xc3A\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2395dd85d7ccb6d8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2395dd85d7ccb6d8 new file mode 100644 index 00000000000..bfbf8a630b5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2395dd85d7ccb6d8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d2c1f0b9a92c9f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d2c1f0b9a92c9f new file mode 100644 index 00000000000..c977ce2aa1b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d2c1f0b9a92c9f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x16") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d5cd932563dbb6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d5cd932563dbb6 new file mode 100644 index 00000000000..eb847988643 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23d5cd932563dbb6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0\xa60000i\xb5000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23e22eee7aa841f9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23e22eee7aa841f9 new file mode 100644 index 00000000000..870bc067b7d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23e22eee7aa841f9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23f8f842d686d268 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23f8f842d686d268 new file mode 100644 index 00000000000..7c68b1bce9e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/23f8f842d686d268 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000A0\xc2D0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243326edd8bb4ede b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243326edd8bb4ede new file mode 100644 index 00000000000..2e5c2f12ecc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243326edd8bb4ede @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24389071483ab783 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24389071483ab783 new file mode 100644 index 00000000000..1e2fb93df79 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24389071483ab783 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x88````0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243e38770dfd29f9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243e38770dfd29f9 new file mode 100644 index 00000000000..1f61fbe9d19 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/243e38770dfd29f9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2XQ000000000000000000000000000000000000000000000000000090000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/244f7cc0973e31d1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/244f7cc0973e31d1 new file mode 100644 index 00000000000..026c54ffeb8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/244f7cc0973e31d1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc200\xc200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2453bca242d40fee b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2453bca242d40fee new file mode 100644 index 00000000000..8d2c5946ba6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2453bca242d40fee @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245c8b113e744453 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245c8b113e744453 new file mode 100644 index 00000000000..0e573a169cd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245c8b113e744453 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x81\x81\x81\x81\xa2\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8108000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245dd523f0cbede6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245dd523f0cbede6 new file mode 100644 index 00000000000..c1143562f5c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/245dd523f0cbede6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc3A0000\xa6\xc3A00000000\xc3A00008000\xc3A0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/248ca08163ab9221 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/248ca08163ab9221 new file mode 100644 index 00000000000..d554507bb66 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/248ca08163ab9221 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa1A0\xa1A0\xa1A0\xa1e00000\xa1A0\xa1A0\xa1A0\xa1A00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24c96f5056354d6a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24c96f5056354d6a new file mode 100644 index 00000000000..298378f0ac6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24c96f5056354d6a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\U000edc0800e\U000edc2200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e75fd9b7adc4d7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e75fd9b7adc4d7 new file mode 100644 index 00000000000..c416b83c8b5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e75fd9b7adc4d7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000C00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e7cc53c4749a0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e7cc53c4749a0e new file mode 100644 index 00000000000..67ec8b3905b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e7cc53c4749a0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fX0000000000000000000000000000000000000000000000000F000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e96678c0908553 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e96678c0908553 new file mode 100644 index 00000000000..363fe5707cb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24e96678c0908553 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900\xd9000\xd9000\xd9\x00\x01\xd900\xd900\xd900\xd900\xd900\xd90000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24ed6a6e74652663 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24ed6a6e74652663 new file mode 100644 index 00000000000..716e5681f03 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/24ed6a6e74652663 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2526b2742c867ab3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2526b2742c867ab3 new file mode 100644 index 00000000000..eaa1e77b023 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2526b2742c867ab3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/255c0721ecb5c907 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/255c0721ecb5c907 new file mode 100644 index 00000000000..25059fd3f6b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/255c0721ecb5c907 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2e00000\xa2J00000000000e00000\xa2J00000000000J00000000010A00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25845824ea0fc0c9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25845824ea0fc0c9 new file mode 100644 index 00000000000..e7b1080ef65 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25845824ea0fc0c9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1\x0e\xc1\x00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25a1058724bef878 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25a1058724bef878 new file mode 100644 index 00000000000..a5909612be8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25a1058724bef878 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\xe900000DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25ce37320ed6d565 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25ce37320ed6d565 new file mode 100644 index 00000000000..f96f09f09dc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25ce37320ed6d565 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900C000\xd9000\xd900\xd900\xd900\xd900\xd900\xd900\xd9000\xd9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25e53e79bc531f41 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25e53e79bc531f41 new file mode 100644 index 00000000000..2ce88013855 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/25e53e79bc531f41 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600000000\xc3A\x00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2610cf0f4784b2e1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2610cf0f4784b2e1 new file mode 100644 index 00000000000..bb419ae7cea --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2610cf0f4784b2e1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x870\xf9 100A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26148a8bb1150dc3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26148a8bb1150dc3 new file mode 100644 index 00000000000..18966b29ab7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26148a8bb1150dc3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xff\xc3@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/265ab13e0c72bcc3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/265ab13e0c72bcc3 new file mode 100644 index 00000000000..9390eefdd9c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/265ab13e0c72bcc3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xc0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/266d51bf101060c9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/266d51bf101060c9 new file mode 100644 index 00000000000..28482ed8c03 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/266d51bf101060c9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa400\xf00\xf0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/267091b0e7016f7e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/267091b0e7016f7e new file mode 100644 index 00000000000..64d490a7120 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/267091b0e7016f7e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26a9ac44cfb61f81 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26a9ac44cfb61f81 new file mode 100644 index 00000000000..81190263d46 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26a9ac44cfb61f81 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xfb70X\",ccYA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b384dba9e5ecf9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b384dba9e5ecf9 new file mode 100644 index 00000000000..9f4ad1c7a4e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b384dba9e5ecf9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b5f658054ed7d2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b5f658054ed7d2 new file mode 100644 index 00000000000..e4ca2f88ce0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/26b5f658054ed7d2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\U000edc080\xa2e\U000edc0800e\U000edc220\xa2e\U000edc080\xa2e\U000edc0800e\U000edc2200e\U000edc2200e\U000edc2200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2727279f0d86789c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2727279f0d86789c new file mode 100644 index 00000000000..dc7058dbc42 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2727279f0d86789c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf000000000000000000000000000000000000000000000000000000000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/272b6e81cb289890 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/272b6e81cb289890 new file mode 100644 index 00000000000..20bcf50b85a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/272b6e81cb289890 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/278e8c63cfd7a039 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/278e8c63cfd7a039 new file mode 100644 index 00000000000..5336fd937a4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/278e8c63cfd7a039 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2J\x812000020020A01A11") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/279ae68f7cb85a0b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/279ae68f7cb85a0b new file mode 100644 index 00000000000..c0faed18f1b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/279ae68f7cb85a0b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xc3J0000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/28082c8abedb7628 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/28082c8abedb7628 new file mode 100644 index 00000000000..1aa8191ffb6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/28082c8abedb7628 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2827c2f8e52a20d2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2827c2f8e52a20d2 new file mode 100644 index 00000000000..6e9bddc2be5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2827c2f8e52a20d2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\U000edc300000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2832e945cb0a002b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2832e945cb0a002b new file mode 100644 index 00000000000..aa343ee29e0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2832e945cb0a002b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xf60\xf6000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/283953cd5179d2c2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/283953cd5179d2c2 new file mode 100644 index 00000000000..3a4059dfe67 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/283953cd5179d2c2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2899e051c824f84a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2899e051c824f84a new file mode 100644 index 00000000000..e1194f7da04 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2899e051c824f84a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2eǩ0\xc3\xfb0eǭ0\xc7\xdd0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/289d2ce1d9229efc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/289d2ce1d9229efc new file mode 100644 index 00000000000..72b4f2c86dc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/289d2ce1d9229efc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/29d3b5297dfaae2f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/29d3b5297dfaae2f new file mode 100644 index 00000000000..463fd2cd018 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/29d3b5297dfaae2f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84e00000\x84\x84\x84\x8400\xf9\x00\x000\xf9\x00\x00000\xf9\x00\x000\xf9\x00\x00\x84\x84\x8400\xf9\x00\x000\xf9\x00\x00000\xf9\x00\x000\xf9\x00\x0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a37be948e5bdc38 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a37be948e5bdc38 new file mode 100644 index 00000000000..df3ff3f5016 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a37be948e5bdc38 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x7fa0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8a9ca285307e5c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8a9ca285307e5c new file mode 100644 index 00000000000..ffddeaaccec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8a9ca285307e5c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0000\n0C00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8c1124319dad18 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8c1124319dad18 new file mode 100644 index 00000000000..12f906848fc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2a8c1124319dad18 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000i\xc9000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ae315ca427297b0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ae315ca427297b0 new file mode 100644 index 00000000000..16f4e3cbc69 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ae315ca427297b0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b0e5e46f1371255 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b0e5e46f1371255 new file mode 100644 index 00000000000..960854e99f8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b0e5e46f1371255 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xdb00000000\xdb00000000\xdb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b14030899009353 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b14030899009353 new file mode 100644 index 00000000000..35de83a4824 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b14030899009353 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9Z@A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b158a9111ae2ed3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b158a9111ae2ed3 new file mode 100644 index 00000000000..2844908f13c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b158a9111ae2ed3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000\n\n0B0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b19d3feaf18dbb9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b19d3feaf18dbb9 new file mode 100644 index 00000000000..d5d662b08d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b19d3feaf18dbb9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000\x00000000\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b4bf0910d64ba71 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b4bf0910d64ba71 new file mode 100644 index 00000000000..c5d3f0e4c50 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b4bf0910d64ba71 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("l00耀00\xe8\x80\xe800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b9912e2ad0b8396 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b9912e2ad0b8396 new file mode 100644 index 00000000000..bedd1ead8ce --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2b9912e2ad0b8396 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc200\x8e\xc30\xc3000\xc300\xc200\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30\xc300\xc3000\xc30\xc3000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2babd65402e25106 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2babd65402e25106 new file mode 100644 index 00000000000..9da9d82ce07 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2babd65402e25106 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfaa820\xfa0000\xfaa000\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xfaa820\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2bd7bc8b6d35dc5c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2bd7bc8b6d35dc5c new file mode 100644 index 00000000000..31ee4333d8b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2bd7bc8b6d35dc5c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2XQ000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c1d989bcbe31ab0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c1d989bcbe31ab0 new file mode 100644 index 00000000000..74a0dfe4a29 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c1d989bcbe31ab0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000Z") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c2eef9fc5ce85d4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c2eef9fc5ce85d4 new file mode 100644 index 00000000000..f1b1719d6c7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c2eef9fc5ce85d4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaZ\xa900\xfaZ\xa900\xfaZ\xa900\xfaZ\xf700A0\x840\xfaZ\xa900\xfaZ\xa900\xfaZ\xf700") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c5d7f4a918094a0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c5d7f4a918094a0 new file mode 100644 index 00000000000..3ba1664927c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2c5d7f4a918094a0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\xff0C0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2cc2686cf522df71 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2cc2686cf522df71 new file mode 100644 index 00000000000..ef5537af5b0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2cc2686cf522df71 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2d7269cbb207f748 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2d7269cbb207f748 new file mode 100644 index 00000000000..e0f5816569e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2d7269cbb207f748 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f``````@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`\x9f````````````\xff```````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3d27c8bfea6170 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3d27c8bfea6170 new file mode 100644 index 00000000000..aa7e9652408 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3d27c8bfea6170 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3C000\xc3G0000000\xc3C000\xc3C000\xc3G0000000\xc3C000\xc3C000\xc3C000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3df2f37626ea03 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3df2f37626ea03 new file mode 100644 index 00000000000..e3852c5c184 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e3df2f37626ea03 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xe90\xe30\xf30\xf30") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e4810d5fb3fad77 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e4810d5fb3fad77 new file mode 100644 index 00000000000..b60b19ad288 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e4810d5fb3fad77 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e7ec59ae9f4062c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e7ec59ae9f4062c new file mode 100644 index 00000000000..d905d9e810e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e7ec59ae9f4062c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````````````````````````````````````````````````````````````````\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e92567d1c6070de b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e92567d1c6070de new file mode 100644 index 00000000000..a563a6111a1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2e92567d1c6070de @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00102000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ea7c0e48ed4484a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ea7c0e48ed4484a new file mode 100644 index 00000000000..a04f7d5de3c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ea7c0e48ed4484a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x840\xd8\x010\x840\xd8\x0100\xd8\x010\xd8\x010000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ecbe074b5ba6e99 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ecbe074b5ba6e99 new file mode 100644 index 00000000000..c416e9f988c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ecbe074b5ba6e99 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("x@0000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ed142c514f9652e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ed142c514f9652e new file mode 100644 index 00000000000..34426eaf8d7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2ed142c514f9652e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f24821381c60d2f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f24821381c60d2f new file mode 100644 index 00000000000..f10730ffa60 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f24821381c60d2f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\xff\x9f\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f5d2dfffa4dad27 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f5d2dfffa4dad27 new file mode 100644 index 00000000000..fd24da4e5bc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f5d2dfffa4dad27 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa8\xf900000\xf90000000\xf900000\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f6f3d07e43e1f5d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f6f3d07e43e1f5d new file mode 100644 index 00000000000..d58add0ad81 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f6f3d07e43e1f5d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000\x8e0\x81\x81\x81\x81\x81\x81\x81\x8100000000000\x8e00000\xf7000000000000000\x8e00000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f7571e1100a3859 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f7571e1100a3859 new file mode 100644 index 00000000000..e0125cbeb20 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f7571e1100a3859 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\xc10A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f8b9c80ff96cd66 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f8b9c80ff96cd66 new file mode 100644 index 00000000000..50153514d4a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2f8b9c80ff96cd66 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xa00\xa00\xa00\xa00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fa8713102ac0ce3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fa8713102ac0ce3 new file mode 100644 index 00000000000..6833870a7dd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fa8713102ac0ce3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaZ\xa900\xfaZ\xa900\xfaZ\xa900\xfaZ\xf700A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc0f6c15791cc3a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc0f6c15791cc3a new file mode 100644 index 00000000000..386fbff6a83 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc0f6c15791cc3a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x840\x84\x8400\xf9\x00\x100\xf9\x00\x1000\xf9\x00\x100\xf9\x00\x1000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc63a4b2c6cc6d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc63a4b2c6cc6d3 new file mode 100644 index 00000000000..50a88a5c343 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fc63a4b2c6cc6d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2eǩ0\xc300eǭ0\xc700") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fe2da74a8e7f876 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fe2da74a8e7f876 new file mode 100644 index 00000000000..83325b99880 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/2fe2da74a8e7f876 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xc7\xc7\xc7\xc7\xc7\xc7\xc1\xfb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3020635fc76a32f8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3020635fc76a32f8 new file mode 100644 index 00000000000..e23f1e55928 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3020635fc76a32f8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xc6\xc60") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/302359c0a751cc82 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/302359c0a751cc82 new file mode 100644 index 00000000000..c73dfc1e0c9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/302359c0a751cc82 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x95\x95\x95\xa9\x95\x95\x95") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3078d80e7981ff1c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3078d80e7981ff1c new file mode 100644 index 00000000000..067ba4f1578 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3078d80e7981ff1c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf9\xfc\x00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/307fdddc14168e0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/307fdddc14168e0e new file mode 100644 index 00000000000..d01f7541dc2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/307fdddc14168e0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa60010\x9600000000\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa00\xa00\xa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/308aab760f7f9a94 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/308aab760f7f9a94 new file mode 100644 index 00000000000..733b9ee9cf2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/308aab760f7f9a94 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9\xfc\x00A0\xf9\xfc\x00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/30f2309d0518045e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/30f2309d0518045e new file mode 100644 index 00000000000..cd8be4d6319 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/30f2309d0518045e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31096504020991fa b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31096504020991fa new file mode 100644 index 00000000000..b3731473c00 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31096504020991fa @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfB000A0\xbf@0A00B000@0\xffA00A0\xbfA20@0A00A10B000@0\xffA10@0@0\xffB00\xa2A0\xbf@0A00B000A0\xbfA20@0A00A10A0\xbfA20@0A00A10B000@0\xffB000@0\xffA10@0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/310dada39b0f6930 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/310dada39b0f6930 new file mode 100644 index 00000000000..914339dda1f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/310dada39b0f6930 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xde") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3112266480e854d0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3112266480e854d0 new file mode 100644 index 00000000000..7806228f623 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3112266480e854d0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xc1\xf9\x00\x0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3148c86e820f80d8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3148c86e820f80d8 new file mode 100644 index 00000000000..93a1da4bc89 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3148c86e820f80d8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xda0000\xb7\xda0000\xda0000\xda0000Z0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31b82db92f228372 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31b82db92f228372 new file mode 100644 index 00000000000..f59ce099db0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31b82db92f228372 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2Ja7000101911A01A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31c5837a9d1dd505 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31c5837a9d1dd505 new file mode 100644 index 00000000000..5d68f9031fb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31c5837a9d1dd505 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa80000\xf9\xff000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31dd2249761c03a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31dd2249761c03a8 new file mode 100644 index 00000000000..d83505fe875 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31dd2249761c03a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31e7158eba55df57 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31e7158eba55df57 new file mode 100644 index 00000000000..4a7e49d9c26 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31e7158eba55df57 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x84\x8400\xf9\x1b1e0\x00\x7f00\x84\x8400B\x1b000900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31ed0e457ca5f29f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31ed0e457ca5f29f new file mode 100644 index 00000000000..cfd25468b34 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/31ed0e457ca5f29f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0`````````a0`````") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327dab45bccbaf01 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327dab45bccbaf01 new file mode 100644 index 00000000000..282baf111a5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327dab45bccbaf01 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000_\xffD0000_\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327f7cdebf987c96 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327f7cdebf987c96 new file mode 100644 index 00000000000..6e9f25bb8c8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/327f7cdebf987c96 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600\xa6000000\xfb000000000\xfb00000000000000\xfb000000000\xfb00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32ac059a9c6561ec b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32ac059a9c6561ec new file mode 100644 index 00000000000..3aa02e5bd71 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32ac059a9c6561ec @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xc7\xc7\xc7\xc7\xc7\xc7\xc1\xfb0000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32bc1ee774d88e6a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32bc1ee774d88e6a new file mode 100644 index 00000000000..7f1deec0784 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/32bc1ee774d88e6a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0``````a0`````````a0```````a0`````") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/331c65319a13d54c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/331c65319a13d54c new file mode 100644 index 00000000000..b34e30d731b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/331c65319a13d54c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3366179ae4d70e26 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3366179ae4d70e26 new file mode 100644 index 00000000000..ba94924cd52 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3366179ae4d70e26 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\u03a2e000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/339b91fff35a6c7e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/339b91fff35a6c7e new file mode 100644 index 00000000000..6edbf3be1e3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/339b91fff35a6c7e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0009\x00\x001A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33a5e5d5c8fed76d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33a5e5d5c8fed76d new file mode 100644 index 00000000000..8e4f10c5f27 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33a5e5d5c8fed76d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xa6\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33b2111fd37085c8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33b2111fd37085c8 new file mode 100644 index 00000000000..35abb6b2996 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/33b2111fd37085c8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0000000000000000\x9f00000000000000000000000000000000000000000000000\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3435c978de0d3510 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3435c978de0d3510 new file mode 100644 index 00000000000..60552524df4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3435c978de0d3510 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3499da07ce48c821 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3499da07ce48c821 new file mode 100644 index 00000000000..4943826ee16 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3499da07ce48c821 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.000000000000\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34eddc7e354243a7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34eddc7e354243a7 new file mode 100644 index 00000000000..9487e3e1c5f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34eddc7e354243a7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q\x00\x00\x00\x00\x02000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34ee8f67c26292af b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34ee8f67c26292af new file mode 100644 index 00000000000..a85c5ade205 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34ee8f67c26292af @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40e000000000\xf70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34fb6cadebc43a61 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34fb6cadebc43a61 new file mode 100644 index 00000000000..3d6e9d148de --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/34fb6cadebc43a61 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd80\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xcb\xd800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/351443ba18e17347 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/351443ba18e17347 new file mode 100644 index 00000000000..a3d5fe1618b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/351443ba18e17347 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte(">") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35253b848ce90f49 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35253b848ce90f49 new file mode 100644 index 00000000000..95a788ee757 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35253b848ce90f49 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2XQ02970000\x80\x0000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/353626f1d58c860f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/353626f1d58c860f new file mode 100644 index 00000000000..eaf389ac541 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/353626f1d58c860f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcfd\xcf\xcf00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/355d60f85367e3ad b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/355d60f85367e3ad new file mode 100644 index 00000000000..f8bb1cfe001 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/355d60f85367e3ad @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x0e\x0e\x0e\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x00\x00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/358abc64a2c17be7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/358abc64a2c17be7 new file mode 100644 index 00000000000..9c2bda5f1c8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/358abc64a2c17be7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````````````````a0``````````````````````````````````````````````\xff0A10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3597a49cfb5ad976 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3597a49cfb5ad976 new file mode 100644 index 00000000000..9474f2ec0b2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3597a49cfb5ad976 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa61020\xc1\xfb\xbe0000000000\xc1\xfb\xbe0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35acec46207d609f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35acec46207d609f new file mode 100644 index 00000000000..8adfcc28b7a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35acec46207d609f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f0C000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35cab69eecbbaf1c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35cab69eecbbaf1c new file mode 100644 index 00000000000..3f509bb4717 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/35cab69eecbbaf1c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3653e80b6f343bb3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3653e80b6f343bb3 new file mode 100644 index 00000000000..14f9a16cdb8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3653e80b6f343bb3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00B000@0A10@0\xffB00\xa2A0\xbf@0A00B000A0\xbfA20@0A00A10B000@0\xffA10@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/367e0caa216fb108 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/367e0caa216fb108 new file mode 100644 index 00000000000..fc343857f26 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/367e0caa216fb108 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc200\x8e\xc300\xc300\xc200\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc300000\xc3000\xc30\xc3000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/368968a6be033229 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/368968a6be033229 new file mode 100644 index 00000000000..04e47b2bc7d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/368968a6be033229 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbfA00A0000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3692578a0082e389 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3692578a0082e389 new file mode 100644 index 00000000000..0aaac83dc42 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3692578a0082e389 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xff\xc3@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36cb1d306a63309a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36cb1d306a63309a new file mode 100644 index 00000000000..a1e6f890d5f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36cb1d306a63309a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X<00%00)000000000000000000000000000100000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36e794279c48a944 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36e794279c48a944 new file mode 100644 index 00000000000..723af974646 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36e794279c48a944 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q\x00\x00\x00\x00\x00\x00\x00\x00\x0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36f3956102eafe5f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36f3956102eafe5f new file mode 100644 index 00000000000..37615dd4697 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/36f3956102eafe5f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6102000\xc1\xfbA00000000\xc1\xfbA0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/374dd24d3ae10325 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/374dd24d3ae10325 new file mode 100644 index 00000000000..04da33624eb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/374dd24d3ae10325 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xc9\xd6\xd6\xd6\xd6\xd6\xd6\xd6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/377db2e487e94a90 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/377db2e487e94a90 new file mode 100644 index 00000000000..c7bec004d21 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/377db2e487e94a90 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc0d00000A0\xc0d0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37904366dd3d2868 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37904366dd3d2868 new file mode 100644 index 00000000000..a872153ca8b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37904366dd3d2868 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb0\x860000000\x800\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xe30") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/379c81faf91a68f6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/379c81faf91a68f6 new file mode 100644 index 00000000000..8266ba62891 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/379c81faf91a68f6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f0000000000\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37dec3363e8960d0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37dec3363e8960d0 new file mode 100644 index 00000000000..3d46c8dee87 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37dec3363e8960d0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e\xa2e00000\x8e000\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5000A0000\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37e496b9ec80875f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37e496b9ec80875f new file mode 100644 index 00000000000..a53e3823a22 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/37e496b9ec80875f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xa7\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3837a28116827562 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3837a28116827562 new file mode 100644 index 00000000000..559d0a55967 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3837a28116827562 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e000000A10A00@00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/385fb72ee81a4afe b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/385fb72ee81a4afe new file mode 100644 index 00000000000..f289a972dd5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/385fb72ee81a4afe @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3873d70d821cfdc5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3873d70d821cfdc5 new file mode 100644 index 00000000000..1fccb079ed5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3873d70d821cfdc5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\x9f\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xff\xc3A0\xc3A0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/388303bc840ad871 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/388303bc840ad871 new file mode 100644 index 00000000000..3980c8fcc62 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/388303bc840ad871 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6d00\xd500") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/391e59b2ef08709c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/391e59b2ef08709c new file mode 100644 index 00000000000..d3962c66702 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/391e59b2ef08709c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc0`\xc0`\xc0`\xc0a0\xc0`\xc0a0\xc0`\xc0`\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/393536f2a4eed9a0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/393536f2a4eed9a0 new file mode 100644 index 00000000000..9ba72e1ca0b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/393536f2a4eed9a0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7ǡ000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3997c7afd0ea8408 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3997c7afd0ea8408 new file mode 100644 index 00000000000..82560950573 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3997c7afd0ea8408 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84 \x84 0\xc2J0000000000\x84 \x84 \x84 0\xc2J0000000000\x84\xc2Va000000000000000000000000\x84 \x84 \x84 0\xc2J00\xc20000000 0 0 0 0 0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39ba1bd4ee05efae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39ba1bd4ee05efae new file mode 100644 index 00000000000..967bab9f9ad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39ba1bd4ee05efae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9000\x84\xf901\xf900\xf900\x84\xf9\x190\xf900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39e97a80dbb0300a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39e97a80dbb0300a new file mode 100644 index 00000000000..d362326d113 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/39e97a80dbb0300a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fF00000\xd6A\xe8\x9fF00000\xd6A\xe8A\xf1A\xe7\x9fA\xf1F00000֟A\xf1A\xf1A\xe7\xffA\xf1A\xe7A\xf1A\xf1A\xe7\xffA\xf1A\xe7\xffA\xf1A\xe7\x9fA\xf1F00000֟A\xf1A\xf1A\xe7\xffA\xf1A\xe7A\xf1A\xf1A\xe7\xffA\xf1A\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a05ebc1e8214e76 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a05ebc1e8214e76 new file mode 100644 index 00000000000..d6817900bd6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a05ebc1e8214e76 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc30") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a2f45eb489fe168 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a2f45eb489fe168 new file mode 100644 index 00000000000..a8305b68044 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a2f45eb489fe168 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a3fcb3446fb2ac4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a3fcb3446fb2ac4 new file mode 100644 index 00000000000..5886124b0cb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a3fcb3446fb2ac4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x83A0i000000000@A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a525372904e200f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a525372904e200f new file mode 100644 index 00000000000..2b18396d0b2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a525372904e200f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a8187628e01af4e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a8187628e01af4e new file mode 100644 index 00000000000..c2c81019647 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a8187628e01af4e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\x840\x84\xf9\x010000\xf9\x0000\x84\xf9\x0100\xf9\x010000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9417e0abb8370d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9417e0abb8370d new file mode 100644 index 00000000000..49d3794bfc0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9417e0abb8370d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xdb0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9ef25daae0f3b3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9ef25daae0f3b3 new file mode 100644 index 00000000000..ef0e8af8009 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3a9ef25daae0f3b3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\x7f\xffB0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3aa5b8096fccb900 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3aa5b8096fccb900 new file mode 100644 index 00000000000..0a3e6a298e6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3aa5b8096fccb900 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x87$\xf9\x1410\x84\xf9\x87$\xf9\x14100A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3afc1bb2c5c772d0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3afc1bb2c5c772d0 new file mode 100644 index 00000000000..acb1c9a5063 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3afc1bb2c5c772d0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b012f76ce3ee14b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b012f76ce3ee14b new file mode 100644 index 00000000000..f55ed88d133 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b012f76ce3ee14b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\xf90\xf9\xf900\xf9\xf90\xf9\xf90A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b40164c8229f276 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b40164c8229f276 new file mode 100644 index 00000000000..2bddc7ab258 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b40164c8229f276 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9X0\xf9X0\x9f\xf9X0\xf9x0\xf9X0\xf9X0\xf9X0\x9f\xf9X0\xf9x0\xf9X0\xff\xf9X0\xf9X0\xf9X0\xf9X1\xf9X0\xff\xf9X0\x9f\xf9X0\xf9x0\xf9X0\xff\xf9X0\xf9X0\xf9X0\xf9X1\xf9X0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b8ae4f1a42699db b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b8ae4f1a42699db new file mode 100644 index 00000000000..54854b0135f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b8ae4f1a42699db @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa80000\xf9\x00000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b935ab68e36ab4a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b935ab68e36ab4a new file mode 100644 index 00000000000..23fa1595743 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3b935ab68e36ab4a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\n0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bd6f1b26939e22d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bd6f1b26939e22d new file mode 100644 index 00000000000..fce77aec712 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bd6f1b26939e22d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2@0\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1D0000\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bf3b3d01ee48757 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bf3b3d01ee48757 new file mode 100644 index 00000000000..1069a035816 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3bf3b3d01ee48757 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaa000\xfaa000\xfbX0000000\xfbX0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c0db78cd78554b9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c0db78cd78554b9 new file mode 100644 index 00000000000..7ea48e6394b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c0db78cd78554b9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xf5\xf5A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c28d4b0e71f8bcc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c28d4b0e71f8bcc new file mode 100644 index 00000000000..7eaf0a9110d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c28d4b0e71f8bcc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e`````000000``0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c2a9e434a0fa503 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c2a9e434a0fa503 new file mode 100644 index 00000000000..ce341117e0f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c2a9e434a0fa503 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000\x00000000\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c7b4352ebaff341 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c7b4352ebaff341 new file mode 100644 index 00000000000..93d16940cb2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3c7b4352ebaff341 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf9\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb48b965d201a55 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb48b965d201a55 new file mode 100644 index 00000000000..d7c6a9715aa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb48b965d201a55 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fX000000000000000000000000000000000000000000000000\xf9P0000000000000\xf900\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb6ce2b47e44bc0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb6ce2b47e44bc0 new file mode 100644 index 00000000000..8e5ae5b8bfe --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cb6ce2b47e44bc0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xca\xcf\xcf\xcf\xcf\xcf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cc7a750b707f44a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cc7a750b707f44a new file mode 100644 index 00000000000..dcf344c60f4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cc7a750b707f44a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfb00000000\xfb00000000\xfb00000000\xfb00000000\x9f\xfb00000000\xfb00000000\xfb00000000\xfb00000000\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cd92cc88573b345 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cd92cc88573b345 new file mode 100644 index 00000000000..bb5ddc24cf4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3cd92cc88573b345 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ00000A002100000000000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d1e133f831f92b0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d1e133f831f92b0 new file mode 100644 index 00000000000..f4ed8e2364a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d1e133f831f92b0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J\x9700000000080D000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d496ed23a53e159 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d496ed23a53e159 new file mode 100644 index 00000000000..29a07eadcf9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d496ed23a53e159 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbfA00A00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d510b1667cfc316 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d510b1667cfc316 new file mode 100644 index 00000000000..7f2986f6367 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d510b1667cfc316 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d5db21dd8bb9b1a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d5db21dd8bb9b1a new file mode 100644 index 00000000000..79c1ed7f6ad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d5db21dd8bb9b1a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\xbf\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d63353cebc2247e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d63353cebc2247e new file mode 100644 index 00000000000..cd959403ac5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d63353cebc2247e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa5\x140\x140\x140\x14000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d790719a4cce318 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d790719a4cce318 new file mode 100644 index 00000000000..8b3d9368d96 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d790719a4cce318 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d9a1ab314d025ab b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d9a1ab314d025ab new file mode 100644 index 00000000000..56c5872f44d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3d9a1ab314d025ab @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd80\xd800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3db1b65899f9e8dd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3db1b65899f9e8dd new file mode 100644 index 00000000000..eec285a398d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3db1b65899f9e8dd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2B00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbf\xffA0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbf\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dc515382c66c228 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dc515382c66c228 new file mode 100644 index 00000000000..8682f00a09b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dc515382c66c228 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4e00000\xa4e00000e0000\xa40e00000000e00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dee3d6642e7a340 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dee3d6642e7a340 new file mode 100644 index 00000000000..aaf4ce247d5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3dee3d6642e7a340 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfa\xfa000\xfa\xfa000\xfa\xfa000\xfa\xfa000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3df476707d238b74 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3df476707d238b74 new file mode 100644 index 00000000000..53788401c05 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3df476707d238b74 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xc90i0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e1d88524d8b9719 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e1d88524d8b9719 new file mode 100644 index 00000000000..7c959bac03f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e1d88524d8b9719 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X'0000\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n0000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e2c1feea099fd34 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e2c1feea099fd34 new file mode 100644 index 00000000000..4e9adfc09c2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e2c1feea099fd34 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000\x8e00\x8d0000000000000000\x8e000\x800000000000000000000000\x8e000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e448f9c094fc8a0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e448f9c094fc8a0 new file mode 100644 index 00000000000..85f6107d1d0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3e448f9c094fc8a0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa68080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec5c3c0f4a5b8ce b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec5c3c0f4a5b8ce new file mode 100644 index 00000000000..b1d63f00dca --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec5c3c0f4a5b8ce @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xf9\x7f0\xf9\x7f0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec7b234d72e6bd3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec7b234d72e6bd3 new file mode 100644 index 00000000000..089c9f5c335 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ec7b234d72e6bd3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fA0A0A0A0A0A0v00ڙ000000000000000000A0A0A0A0A0A0A0A0A0A0A0A0A0A0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ecbbd9d6396be3b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ecbbd9d6396be3b new file mode 100644 index 00000000000..21dc3ac05de --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3ecbbd9d6396be3b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\x030\xf9\x010000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f1b489ab00009ae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f1b489ab00009ae new file mode 100644 index 00000000000..3de4318d015 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f1b489ab00009ae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa400\xf90000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f40dde107e7a3e9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f40dde107e7a3e9 new file mode 100644 index 00000000000..d7f58e47948 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f40dde107e7a3e9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f76259456c50357 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f76259456c50357 new file mode 100644 index 00000000000..6429231bdd2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f76259456c50357 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E魰00E魰00@\xa2E魰00E魰00@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f95f2559e8dc64a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f95f2559e8dc64a new file mode 100644 index 00000000000..4eed76d6b10 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3f95f2559e8dc64a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaa000\xfaa000\xfbX00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fcb7688755e3e29 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fcb7688755e3e29 new file mode 100644 index 00000000000..89d93f6d50c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fcb7688755e3e29 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd80\xd80\xd80\xd8\x00d0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fde41a4e8f54f3e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fde41a4e8f54f3e new file mode 100644 index 00000000000..d1439bda26e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/3fde41a4e8f54f3e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa41e00000A00D0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/400c75cbcf4d9651 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/400c75cbcf4d9651 new file mode 100644 index 00000000000..21f5e713224 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/400c75cbcf4d9651 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xc3Q00000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4019a82a679ac799 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4019a82a679ac799 new file mode 100644 index 00000000000..dd11a6acd14 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4019a82a679ac799 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff\x7f\xff\x7f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/402e87b2b5d82a51 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/402e87b2b5d82a51 new file mode 100644 index 00000000000..f6477645328 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/402e87b2b5d82a51 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa610207000\xc1\xfb00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/403a85e9561825d7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/403a85e9561825d7 new file mode 100644 index 00000000000..aa15ca50f68 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/403a85e9561825d7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xbf\xbf\xff\xbf\xff\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/404f9521aaf71255 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/404f9521aaf71255 new file mode 100644 index 00000000000..aee90be1be2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/404f9521aaf71255 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4081f0bb4d2bcd89 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4081f0bb4d2bcd89 new file mode 100644 index 00000000000..cc99bf1a169 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4081f0bb4d2bcd89 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````````\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40996f0f16e02c98 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40996f0f16e02c98 new file mode 100644 index 00000000000..fa79305d4c8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40996f0f16e02c98 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x840\x84\x8400\xf9\x00\x010\xf9\x00\x10\x8400\xf9\x00\x010\xf9\x00\x1000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40c0320392a833fc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40c0320392a833fc new file mode 100644 index 00000000000..f788cddff8e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40c0320392a833fc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200;\xff\xff\xff\xff\xff\xff\xff\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40d377a36bd4d424 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40d377a36bd4d424 new file mode 100644 index 00000000000..a666e1d34fd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40d377a36bd4d424 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("բJapiVersionA0DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40df7ac036ddd3dc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40df7ac036ddd3dc new file mode 100644 index 00000000000..61c2517f2ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40df7ac036ddd3dc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40f5f99fe71e89a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40f5f99fe71e89a3 new file mode 100644 index 00000000000..8dd2c800dd9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/40f5f99fe71e89a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf900\xc2\xf900\x9f\xf900\xf900\xf900\xff\xf900\x9f\xf900\xf900\x9f\xf900\xf900\xf900\xff\xf900\xf900\xf900\xf900\xf900\xf900\xff\xf900\xf900\xf900\xf900\xf900\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4121a2fc169f511e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4121a2fc169f511e new file mode 100644 index 00000000000..2729d1b9e90 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4121a2fc169f511e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7f\x04") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4214878cc4616bd7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4214878cc4616bd7 new file mode 100644 index 00000000000..db873d8f8b4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4214878cc4616bd7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x88\x10\x10\x10\x10\x10\x10\x10\x10000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4247adfc43600804 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4247adfc43600804 new file mode 100644 index 00000000000..e3302dd36a7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4247adfc43600804 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000000\x1a0000\x1a00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/42509a360e4d2304 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/42509a360e4d2304 new file mode 100644 index 00000000000..acb4dbc2abb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/42509a360e4d2304 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb500000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4253f6deafa8db4e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4253f6deafa8db4e new file mode 100644 index 00000000000..b4113f9e617 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4253f6deafa8db4e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x81\x81\x81\x81\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4272893fef070799 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4272893fef070799 new file mode 100644 index 00000000000..c67380301bd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4272893fef070799 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa2\xf60\xf6\xa2\xf6\xa1\xf6\xa2\xf60\xf6\xa2\xf6\xa1\xf6\xa2\xf60\xf6\xa1\xf6\xa2000000\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa2\xf60\xf6\xa1\xf6\xa2000000\xf6\xa2\xf6\xa1\xf6\xa200000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4279eb0c0a8a518d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4279eb0c0a8a518d new file mode 100644 index 00000000000..65dd6ea8540 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4279eb0c0a8a518d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e00000\xfbC\x80200010A0\xfbC\x80200010A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/428d7653fe008412 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/428d7653fe008412 new file mode 100644 index 00000000000..d388144084b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/428d7653fe008412 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600\xaf0000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/433f0f4551be7147 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/433f0f4551be7147 new file mode 100644 index 00000000000..86c96439aed --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/433f0f4551be7147 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`\xff0A0\xa2\x7f`\xff0A0\xa2\x7f`\xff0A0\xa2\x7f`\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/434704d10cf83c94 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/434704d10cf83c94 new file mode 100644 index 00000000000..89ae56b77dd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/434704d10cf83c94 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc0d00\xcb00A0\xc0d0\xcb00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43a329b863308626 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43a329b863308626 new file mode 100644 index 00000000000..8a5adaf6b4e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43a329b863308626 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaZ\xa900\xfaZ\xa900\x84\xfaZ\xa900\xfaZ\xa900\xfaZ\xa900\xfaZ\xa900\xfaZ\xf700A0\x8400\xfaZ\xa900\xfaZ\xf700") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43abf2c1ec3ce9e4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43abf2c1ec3ce9e4 new file mode 100644 index 00000000000..b7d13ed99dd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43abf2c1ec3ce9e4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x84\x84\xf9\x7f0\xf9\x7f0\xf9\x7f0\x84\xf9\x7f0\xf9\x7f0\xf9\x7f0\xf9\x7f0\xf9\x7f0\x84\xf9\x7f0\xf9\x7f0\xf9\x7f0\x84\xf9\x7f0\xf9\x7f0\xf9\x7f0\xf9\x7f0\xf9\x7f0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43df6cfdaacaa61a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43df6cfdaacaa61a new file mode 100644 index 00000000000..d7b0fc63a85 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/43df6cfdaacaa61a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\xff000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4421cbb4f7280ba9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4421cbb4f7280ba9 new file mode 100644 index 00000000000..8085762e785 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4421cbb4f7280ba9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200C000d0\xc200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4457bedbc5fc9009 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4457bedbc5fc9009 new file mode 100644 index 00000000000..5f14894dc59 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4457bedbc5fc9009 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4e00000e00000A0D00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/44d3f66c688ad516 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/44d3f66c688ad516 new file mode 100644 index 00000000000..d1d056e9468 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/44d3f66c688ad516 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xd9\x00\x00a0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/452a84ecce65a3ca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/452a84ecce65a3ca new file mode 100644 index 00000000000..5490bf74f9a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/452a84ecce65a3ca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9\x00\x02A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/454e89fbd34310ed b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/454e89fbd34310ed new file mode 100644 index 00000000000..1fc07554a23 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/454e89fbd34310ed @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd80\xd80\xd80\xd80\xd80\xd800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/456bd93571108d22 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/456bd93571108d22 new file mode 100644 index 00000000000..de7662d4e35 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/456bd93571108d22 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xd9\xd9\xf7\xd9\xd9\xf70\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/458c2ee1136120c1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/458c2ee1136120c1 new file mode 100644 index 00000000000..88aecb89b74 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/458c2ee1136120c1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xc3P00000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4591958e1592ba83 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4591958e1592ba83 new file mode 100644 index 00000000000..6e0f373d4f3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4591958e1592ba83 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2B00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbfB00\xa2A0\xbf\xffB00\xa2A1\xbf\xffA0\xbf\xff\xffB00\xa2A1\xbf\xffA0\xbf\xffB00\xa2A0\xbf\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/45966840b7b143e7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/45966840b7b143e7 new file mode 100644 index 00000000000..4be6373ec3d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/45966840b7b143e7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e00000\x84\x8400\xf9\xf90\xf9\xf900\xf9\xf90\xf9\xf90A0\x84\x8400\xf9\xf90\xf9\xf900\xf9\xf90\xf9\xf90A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4609036d8498bcea b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4609036d8498bcea new file mode 100644 index 00000000000..659789fe34a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4609036d8498bcea @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\x980\x980\x980\x980\x980\x980\x980\x980") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46698f781e22af57 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46698f781e22af57 new file mode 100644 index 00000000000..2387eb3a2ae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46698f781e22af57 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xa00\xa00\xa00\x800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/467322a0d1b65af3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/467322a0d1b65af3 new file mode 100644 index 00000000000..409581bf086 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/467322a0d1b65af3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("l000݀00݀000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46c4d974ab137db2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46c4d974ab137db2 new file mode 100644 index 00000000000..1d84eb33d7d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/46c4d974ab137db2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\x95\x9500\x85\x85\x85\x85\x85\x85000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47078f5320041022 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47078f5320041022 new file mode 100644 index 00000000000..387f325ef19 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47078f5320041022 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.00000000000000'\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b0\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1fA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4713d196d421d930 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4713d196d421d930 new file mode 100644 index 00000000000..0ae2a16b926 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4713d196d421d930 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\xc0`\xc0`\xc0`\xc0a0\xc0`\xc0a0\xc0`\xc0`\xff\xc0`\xc0`\xc0`\xc0a0\xc0`\xc0a0\xc0`\xc0`\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/474e80fa3944f4f7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/474e80fa3944f4f7 new file mode 100644 index 00000000000..987b44cad20 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/474e80fa3944f4f7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbfJ00000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4750a9a9b98ed0f9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4750a9a9b98ed0f9 new file mode 100644 index 00000000000..808b79a626c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4750a9a9b98ed0f9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd5\xd5\xd5\xd5\xd5\xd5բJ0\x000\x00\x00000\x00\x10\x9f\xf1\xf1\xf1\xf1\xf1\xf1\xe7\xe7\xf1\xf1\xe7\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/476ba1084f2429b4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/476ba1084f2429b4 new file mode 100644 index 00000000000..d90f9d5c113 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/476ba1084f2429b4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\x810\x81\x810\x81\x81\x8100\x81\x81\x81\x810") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4770df6aad108528 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4770df6aad108528 new file mode 100644 index 00000000000..217fe15872a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4770df6aad108528 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa41000\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc40000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4787c87b3c434f91 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4787c87b3c434f91 new file mode 100644 index 00000000000..cb99bc601ef --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4787c87b3c434f91 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc0\xc0\xc0\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47a4da84b9ed0d91 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47a4da84b9ed0d91 new file mode 100644 index 00000000000..f37223bcedd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47a4da84b9ed0d91 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd9000\xd9000\xd9000\xd900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d443e253996534 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d443e253996534 new file mode 100644 index 00000000000..2f72b23f3c1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d443e253996534 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xfac0=0\xfaaG00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d6ef78b41bf10e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d6ef78b41bf10e new file mode 100644 index 00000000000..bf63707d40e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47d6ef78b41bf10e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xfb00000000\xfb00000000\xfb00000000\xfb00000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47e373c52f631e34 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47e373c52f631e34 new file mode 100644 index 00000000000..93009f71d45 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47e373c52f631e34 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0209\xb9\xbf\xbeA0\xfbG0209#00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47f335c67f5fad5d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47f335c67f5fad5d new file mode 100644 index 00000000000..eeacabae29b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47f335c67f5fad5d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xa6000000\xc30000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47fa8bbcd6f69a91 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47fa8bbcd6f69a91 new file mode 100644 index 00000000000..40c8108bfac --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/47fa8bbcd6f69a91 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersiond//00@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/481f6405df9966ec b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/481f6405df9966ec new file mode 100644 index 00000000000..b034d747796 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/481f6405df9966ec @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x1a0000C00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4856bab7fc478b1a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4856bab7fc478b1a new file mode 100644 index 00000000000..b9eba13893b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4856bab7fc478b1a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f00000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/488f33c457838ba4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/488f33c457838ba4 new file mode 100644 index 00000000000..323421f2e0b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/488f33c457838ba4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa20000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48afe35f8e9c8d9f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48afe35f8e9c8d9f new file mode 100644 index 00000000000..19c4806d74f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48afe35f8e9c8d9f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x90\x90?") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48fa05aefe3c7b6f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48fa05aefe3c7b6f new file mode 100644 index 00000000000..9745c777dc3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/48fa05aefe3c7b6f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2J#0071007101A20A10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/491e5e07161ab448 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/491e5e07161ab448 new file mode 100644 index 00000000000..81d4d2dae48 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/491e5e07161ab448 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf0000000000000000000000g0000000000000000000000\x7f\xff00000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/498bc793242f3310 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/498bc793242f3310 new file mode 100644 index 00000000000..2122b6e1a1b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/498bc793242f3310 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb28000010\xec0a\xec0a\x990b0\xec0a\xee0a\xec0a\xec0a\x990a\xec0000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c13bddc9fec7f0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c13bddc9fec7f0 new file mode 100644 index 00000000000..f01c2744ed5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c13bddc9fec7f0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbCX000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c9e720df6c9ec3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c9e720df6c9ec3 new file mode 100644 index 00000000000..33c42463fdb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49c9e720df6c9ec3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xc2J0000000000\x84\xc2J0000000000\x84\xc2L0000000000000\xc2L00000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49de60c029f75a8e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49de60c029f75a8e new file mode 100644 index 00000000000..32bdb46c4da --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/49de60c029f75a8e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xt00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad2ee2e40639c29 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad2ee2e40639c29 new file mode 100644 index 00000000000..4d05d8c7e84 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad2ee2e40639c29 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0000000D0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad40f3071192686 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad40f3071192686 new file mode 100644 index 00000000000..1d7afbdc96b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ad40f3071192686 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa4\xc2@0\xc2@0\xc2@0\xc2@0\xa4\xc2@0\xc2@0\xc2@0\xc2@00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1a23ae5e6a0810 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1a23ae5e6a0810 new file mode 100644 index 00000000000..663a5791a5b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1a23ae5e6a0810 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e81720\xa2J20091020202J&70108A1007A22Ax2") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1cd9ae89f97b58 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1cd9ae89f97b58 new file mode 100644 index 00000000000..87b5c4d5713 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b1cd9ae89f97b58 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.00000000000000000000000\x18000000\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1fA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b3609fb407caa01 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b3609fb407caa01 new file mode 100644 index 00000000000..12c75471735 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b3609fb407caa01 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3\xc2Xp80710002210B00080C1722b1$1120200001010000000000z000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5aa4d461062e38 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5aa4d461062e38 new file mode 100644 index 00000000000..97247e7f217 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5aa4d461062e38 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2D00000@000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5d8405b5150123 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5d8405b5150123 new file mode 100644 index 00000000000..d0fb6eae036 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b5d8405b5150123 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2C000\x8b0000\xd9000\xd9000\xd90000\xd90000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b6ad5012304336f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b6ad5012304336f new file mode 100644 index 00000000000..5ce93943fc9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4b6ad5012304336f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4bc903d44085f12a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4bc903d44085f12a new file mode 100644 index 00000000000..c2bb3824b6f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4bc903d44085f12a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c3623c1d0e173df b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c3623c1d0e173df new file mode 100644 index 00000000000..27257216bd5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c3623c1d0e173df @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c51e3b66d4251c3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c51e3b66d4251c3 new file mode 100644 index 00000000000..ac172ecf74d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c51e3b66d4251c3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000\x8e0\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810000\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c7753ee83baf016 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c7753ee83baf016 new file mode 100644 index 00000000000..6e26e587953 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4c7753ee83baf016 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\x80200010A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4cad3bbcaf181fc0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4cad3bbcaf181fc0 new file mode 100644 index 00000000000..b29ae47ef06 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4cad3bbcaf181fc0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersion80JapiVersion00\xfb00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ccfcb2ad67eae7e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ccfcb2ad67eae7e new file mode 100644 index 00000000000..c05eabb62f9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ccfcb2ad67eae7e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e00000\xfbC\x80201010A0\xfbC\x80210010A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d04f9388d7124f0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d04f9388d7124f0 new file mode 100644 index 00000000000..b61f471cd93 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d04f9388d7124f0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8f000000\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf70000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d050dedcaaa666b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d050dedcaaa666b new file mode 100644 index 00000000000..d8a58eef2ab --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d050dedcaaa666b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xc1\xf90000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d0bb6b3204f022a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d0bb6b3204f022a new file mode 100644 index 00000000000..fa28bbf09d6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d0bb6b3204f022a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1;\xc10000000\xc1;\xc10000000\xc1;\xc10000000\xc1;\xc10000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d10cfc332ce912d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d10cfc332ce912d new file mode 100644 index 00000000000..f7698f4c010 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d10cfc332ce912d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa5\xe80;\xf600000000;\xf6000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d8d30c1582e1cbd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d8d30c1582e1cbd new file mode 100644 index 00000000000..29136d0b611 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d8d30c1582e1cbd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbfJ0000000000\x80\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d9ca0eec7ba470d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d9ca0eec7ba470d new file mode 100644 index 00000000000..03d1139fa25 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4d9ca0eec7ba470d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200A0\xc1\xfa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4de8cd4d66afb87c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4de8cd4d66afb87c new file mode 100644 index 00000000000..f163a781eb9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4de8cd4d66afb87c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\x82\x80\x8200\x82\x82\x80\x820000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e2e864f8f10272a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e2e864f8f10272a new file mode 100644 index 00000000000..f7ed1871b9f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e2e864f8f10272a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0a0a00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e5354414893a9c0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e5354414893a9c0 new file mode 100644 index 00000000000..f10ee49e9a9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e5354414893a9c0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2\x7f\xff80\x7f\xff80\x7f\xff\xa2\x7f\xff\xa2\x7f\xff80\x7f\xff80\x7f\xff80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e53ca6be3cb5058 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e53ca6be3cb5058 new file mode 100644 index 00000000000..608252a3f50 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4e53ca6be3cb5058 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf902\xf902\x84\xf902\xf902000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4eb116f4334a316b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4eb116f4334a316b new file mode 100644 index 00000000000..7c9f28545e1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4eb116f4334a316b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xc9\xd6\xd6\xd6\xc3\xd6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ebca27aa4c11fee b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ebca27aa4c11fee new file mode 100644 index 00000000000..91ebbaf75ca --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4ebca27aa4c11fee @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_@@@@\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f01d5c76f2c00fc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f01d5c76f2c00fc new file mode 100644 index 00000000000..a24d39b9604 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f01d5c76f2c00fc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc2J\x00\x00000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f2a854f8c9d82d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f2a854f8c9d82d3 new file mode 100644 index 00000000000..fcc4b01b149 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f2a854f8c9d82d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc000\xc000\xc000\xc000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f62a69c96c67cb8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f62a69c96c67cb8 new file mode 100644 index 00000000000..ca6ad4e8209 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f62a69c96c67cb8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf9\x00\xfc") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f68c6cdd8f15269 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f68c6cdd8f15269 new file mode 100644 index 00000000000..23c39966dc8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f68c6cdd8f15269 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1\x0e\x9f\xc1\x0e\xc1\x00\xc1\x0e\x9f\xc1\x0e\x9f\xc1\x0e\xc1\x00\xc1\x0e\x9f\xc1\x0e\xc1\x00\xff\xc1\x00\xff\xc1\x00\xc1\x0e\xc1\x00\xff\xc1\x00\xff\xc1\x00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f720093e5e15315 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f720093e5e15315 new file mode 100644 index 00000000000..3e1d35d927b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4f720093e5e15315 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fa12c03a8ff28a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fa12c03a8ff28a8 new file mode 100644 index 00000000000..7d7f9d2ca3e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fa12c03a8ff28a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd80\xd80\xd800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fb70aa3f492be72 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fb70aa3f492be72 new file mode 100644 index 00000000000..de06cde1a81 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fb70aa3f492be72 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6a0000\x000\x000C00080C00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc0466f237adec5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc0466f237adec5 new file mode 100644 index 00000000000..830af624669 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc0466f237adec5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfb00000000\xfb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc1ad205717ae7d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc1ad205717ae7d new file mode 100644 index 00000000000..41f7da861ab --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fc1ad205717ae7d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J\t\t\t\t\t\t\t\t0080@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fd512aa531bf245 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fd512aa531bf245 new file mode 100644 index 00000000000..3d4a96c5552 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/4fd512aa531bf245 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf5\xf5\xf5\xf5\xf5\x9f\xf5\x9f\xf5\xf5\xf5\xf5\xf5\x9f\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/500a8290e1bb006b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/500a8290e1bb006b new file mode 100644 index 00000000000..a6ff87a498a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/500a8290e1bb006b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x850;\xf600000000;\xf6000000000\x850;\xf600000000;\xf6000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/509b86447970ea2a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/509b86447970ea2a new file mode 100644 index 00000000000..ecba24b9377 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/509b86447970ea2a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/50b715ba543f1247 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/50b715ba543f1247 new file mode 100644 index 00000000000..23f6ddcecbf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/50b715ba543f1247 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/514b7581b9c6d801 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/514b7581b9c6d801 new file mode 100644 index 00000000000..e64c341a789 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/514b7581b9c6d801 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\xff\xff\xff\xff\x9f\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51796f315c27f05d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51796f315c27f05d new file mode 100644 index 00000000000..9057267036b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51796f315c27f05d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000000000\xf90A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51db2d3a81e18590 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51db2d3a81e18590 new file mode 100644 index 00000000000..deb31678b37 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/51db2d3a81e18590 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x9f\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52193f5c3b231e0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52193f5c3b231e0e new file mode 100644 index 00000000000..832221676b6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52193f5c3b231e0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf90\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/524a80f1a4eb1ae3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/524a80f1a4eb1ae3 new file mode 100644 index 00000000000..f31b965f201 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/524a80f1a4eb1ae3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfa0100\xfa0070\xfb00000000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/528992feb58eb0e6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/528992feb58eb0e6 new file mode 100644 index 00000000000..49ef9ed02e2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/528992feb58eb0e6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x84\x840000\x84\x8400000000\x84\x840000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52cd91976d7fee72 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52cd91976d7fee72 new file mode 100644 index 00000000000..7896c629947 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52cd91976d7fee72 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00A10B000@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52df67015e6a1add b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52df67015e6a1add new file mode 100644 index 00000000000..cd9deddc6fd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/52df67015e6a1add @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3@\xc3@\xc3@\xc3@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/532d7c16404925c4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/532d7c16404925c4 new file mode 100644 index 00000000000..e3ddc5f6c20 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/532d7c16404925c4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb0\x860000000\xf60\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xe30") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5344dd31575442b4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5344dd31575442b4 new file mode 100644 index 00000000000..e8ff1592fec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5344dd31575442b4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\x84\x80000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5357ea842d1eb75e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5357ea842d1eb75e new file mode 100644 index 00000000000..5d2b39ac2af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5357ea842d1eb75e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa5\xdb00000000000000000\xdb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/536d812579d8a6b3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/536d812579d8a6b3 new file mode 100644 index 00000000000..abf6261eb1c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/536d812579d8a6b3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xdb00000000\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xdb0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5370ef5cbfee060f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5370ef5cbfee060f new file mode 100644 index 00000000000..15c799ad8e1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5370ef5cbfee060f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc0c00\xc00\xc0c00\xc00\xc0a\xc0000\xc0a\xc0000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5399f52ebf3c99c4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5399f52ebf3c99c4 new file mode 100644 index 00000000000..d9cd0deec41 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5399f52ebf3c99c4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````````````````a0````````````````````````````````````````````\xff0A\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53b1e475e434079f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53b1e475e434079f new file mode 100644 index 00000000000..15d8c0443d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53b1e475e434079f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2eǭ0\xaf0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53e0ab9d8e1ab8e2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53e0ab9d8e1ab8e2 new file mode 100644 index 00000000000..cc3c53b467e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53e0ab9d8e1ab8e2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2J17710200217A% A80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53f09e911d523975 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53f09e911d523975 new file mode 100644 index 00000000000..caf48b1cc8c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/53f09e911d523975 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa60000A00@\xa6e000000A00A10@000A00@\xa6e000000A00A10@000D00000@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5403ceecfde0e676 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5403ceecfde0e676 new file mode 100644 index 00000000000..468f2d4c6d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5403ceecfde0e676 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\x9f\xff\x9f\x9f\xff\x9f\xff\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\x9f\x9f\xff\x9f\x9f\xff\xff\x9f\xff\xff\xff\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/541329fed9f902af b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/541329fed9f902af new file mode 100644 index 00000000000..275d02e0319 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/541329fed9f902af @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fA\xf1F00000\xd6B0\xe800000000\x9fA\xf1F00000\xd6J000000\xe8000\x9fA\xf1A\xf1A\xe7\xffA\xf1A\xe7A\xf1A\xf1A\xe7\xffA\xf1A\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54133d9804e5b1be b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54133d9804e5b1be new file mode 100644 index 00000000000..4d17a147244 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54133d9804e5b1be @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xaa\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5420e3dabb6d7520 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5420e3dabb6d7520 new file mode 100644 index 00000000000..42251efb04b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5420e3dabb6d7520 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xa60000\xf800\xe20\xf800\xf800000\xf800\xf800\xf800\xf800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/544055e8acd39728 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/544055e8acd39728 new file mode 100644 index 00000000000..0192c121b45 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/544055e8acd39728 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547a0666f8b9e339 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547a0666f8b9e339 new file mode 100644 index 00000000000..4153539f82e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547a0666f8b9e339 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa1\xa1\xa1\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547c953b60399802 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547c953b60399802 new file mode 100644 index 00000000000..d4ca098f7fc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/547c953b60399802 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd0\xd0\xd0\xd0\xd0\xd0\xd0\xc3G00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54887785bc8e33f5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54887785bc8e33f5 new file mode 100644 index 00000000000..80a8a823a9a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54887785bc8e33f5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2j0000000000\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\x9f\xf7\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff\xff\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54f2ec282c79657f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54f2ec282c79657f new file mode 100644 index 00000000000..67c65a7eda1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/54f2ec282c79657f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2i\xc9000000000i\xc9000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/551835a2faf873d7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/551835a2faf873d7 new file mode 100644 index 00000000000..874a38e9c8d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/551835a2faf873d7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55231c09a6464ce9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55231c09a6464ce9 new file mode 100644 index 00000000000..8b24997ca88 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55231c09a6464ce9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfabX\xfa0\xfabX\xfa0\xfabX\xfa0\xfabX\xfa0\xfabX\xfa0\xfa0000\xfb00000000\xfb00000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5546fa83c8831772 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5546fa83c8831772 new file mode 100644 index 00000000000..5b1c4490556 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5546fa83c8831772 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc300\x8e00\xc300\xc20\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30\xc300\xc300\x8e\xc300\xc300\xc2000\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30000\x8e\xc300\xc300\xc20\xc3000\xc30\xc3000000000\xc3000\xc30\xc300\xc20000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/554abee1d347276b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/554abee1d347276b new file mode 100644 index 00000000000..85aa789e08e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/554abee1d347276b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/555913212b9086bd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/555913212b9086bd new file mode 100644 index 00000000000..0c0de2036a7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/555913212b9086bd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\xa200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/556a94e9f3cef53f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/556a94e9f3cef53f new file mode 100644 index 00000000000..ce7e0aa5720 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/556a94e9f3cef53f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x84\x9f000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55d3872bf7c446fb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55d3872bf7c446fb new file mode 100644 index 00000000000..452150ccc75 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/55d3872bf7c446fb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc40A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5647425687f4bd5e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5647425687f4bd5e new file mode 100644 index 00000000000..288e33d6225 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5647425687f4bd5e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f```````````````````````````````````````````````````````````````\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/567b2730a37d1fc4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/567b2730a37d1fc4 new file mode 100644 index 00000000000..2098d953e1c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/567b2730a37d1fc4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x7fe00000\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56bfe79c63cbeda5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56bfe79c63cbeda5 new file mode 100644 index 00000000000..8b045e8c7f5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56bfe79c63cbeda5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00B000@0\xffB00\xa2A080B00\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00@0\xffB00\xa2A0\xbfA00B100A10B000@0\xffB00\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56ca85432425e173 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56ca85432425e173 new file mode 100644 index 00000000000..444d6a9995a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56ca85432425e173 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1dϡϡ0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56e89149370ee703 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56e89149370ee703 new file mode 100644 index 00000000000..8f15cc2839d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56e89149370ee703 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9x0\xf9x0\xf9x0\xf9x0\xf9x0\xf9x0\xf9x0\xf9X0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efb68c7ce71682 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efb68c7ce71682 new file mode 100644 index 00000000000..0b804e4739a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efb68c7ce71682 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xf9|\x000\xf9|\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efe78b59ecaa8f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efe78b59ecaa8f new file mode 100644 index 00000000000..d0aa78579d5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/56efe78b59ecaa8f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f00000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5738ddd016fa2614 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5738ddd016fa2614 new file mode 100644 index 00000000000..8cb74a84600 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5738ddd016fa2614 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5761f2377e74f33b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5761f2377e74f33b new file mode 100644 index 00000000000..800f1851130 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5761f2377e74f33b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8Ȥ00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57b20b4689441c44 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57b20b4689441c44 new file mode 100644 index 00000000000..f6725c4323a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57b20b4689441c44 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf9000\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57d1e8e70016f1c4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57d1e8e70016f1c4 new file mode 100644 index 00000000000..5a558049520 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57d1e8e70016f1c4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8200A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57f36cb3f1bff875 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57f36cb3f1bff875 new file mode 100644 index 00000000000..1862c6e04ae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/57f36cb3f1bff875 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````````````````a0``````````````````````````````````````````````\xff8000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5855c88265ea57f3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5855c88265ea57f3 new file mode 100644 index 00000000000..319a3ee06ab --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5855c88265ea57f3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4@\xa0D0000\xa4@\xa0D0000\xa000@\xa00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5881658c02ce2d8b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5881658c02ce2d8b new file mode 100644 index 00000000000..1ca1b371955 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5881658c02ce2d8b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00A10B000@0\xffB00\xa2A0\xbfA00A10B000@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58b10583a8049a1b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58b10583a8049a1b new file mode 100644 index 00000000000..5759f52ae30 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58b10583a8049a1b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2B00\xfbC\xff080000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58c32ef259682410 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58c32ef259682410 new file mode 100644 index 00000000000..e20491abc86 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58c32ef259682410 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58ece04b93c33d46 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58ece04b93c33d46 new file mode 100644 index 00000000000..53999a0473f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/58ece04b93c33d46 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5923c1326d6c3bf0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5923c1326d6c3bf0 new file mode 100644 index 00000000000..e9606740973 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5923c1326d6c3bf0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x89\x89\x89\x89000000000000000000000000000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/593f2394eb7f517b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/593f2394eb7f517b new file mode 100644 index 00000000000..35111d71608 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/593f2394eb7f517b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc2J0000000000000\xc2J0000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59476ac319c0e231 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59476ac319c0e231 new file mode 100644 index 00000000000..aaa9108db87 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59476ac319c0e231 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/599d493455558234 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/599d493455558234 new file mode 100644 index 00000000000..1a9ed5c5c57 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/599d493455558234 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf000000000000000000gggggggg0gggggggg000000g00000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59ee9b8e5fa421ca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59ee9b8e5fa421ca new file mode 100644 index 00000000000..9b10be26873 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59ee9b8e5fa421ca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x870\xf9 00\x84\xf9\x87000\x84\xf9\x870\xa2e00000\x84\xf9\x870\xf9 00\x84\xf9\x870\xf9!00\x84\xf9\x870\xf9 00\x84\xf9\x870\xf9 000A0\xf9 000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59fac754e2128abd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59fac754e2128abd new file mode 100644 index 00000000000..67f6e9c7cff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/59fac754e2128abd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc200\x8e\xc300\xc300\xc200\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc300000\xc3000\xc30\xc300\xc20000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a1866a8b6d29dc3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a1866a8b6d29dc3 new file mode 100644 index 00000000000..f04d314e89f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a1866a8b6d29dc3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc1\xfb0000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a8b99ecce19ef48 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a8b99ecce19ef48 new file mode 100644 index 00000000000..8ca25ad1a06 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5a8b99ecce19ef48 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xda0000\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xda000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa446f1c0b13099 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa446f1c0b13099 new file mode 100644 index 00000000000..b9a9b05d6e0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa446f1c0b13099 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa5437e2615bfd9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa5437e2615bfd9 new file mode 100644 index 00000000000..d3d8d7c8aee --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5aa5437e2615bfd9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1\x0e\x9f\xc1\x0e\xc1\x00\xff\xc1\x00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ad2d752d034c65a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ad2d752d034c65a new file mode 100644 index 00000000000..1fc606622c7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ad2d752d034c65a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000``````00``0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5b735d5755c8c069 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5b735d5755c8c069 new file mode 100644 index 00000000000..cc4c15ea71b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5b735d5755c8c069 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ba32d3229f626ea b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ba32d3229f626ea new file mode 100644 index 00000000000..5ad431bb10e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ba32d3229f626ea @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5baf9017a94c8b79 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5baf9017a94c8b79 new file mode 100644 index 00000000000..afbc9f55e07 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5baf9017a94c8b79 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e00000\xa2J00000000000J00000000010A00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bb36a5d303d973c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bb36a5d303d973c new file mode 100644 index 00000000000..e3d4a99465e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bb36a5d303d973c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc9\xc9\xc9\xc9B000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bc23bb353bd35e2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bc23bb353bd35e2 new file mode 100644 index 00000000000..57267662b3c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5bc23bb353bd35e2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\xf3\xad\xb0000e\xf3\xad\xb0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c177fa1cd0edaf2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c177fa1cd0edaf2 new file mode 100644 index 00000000000..f55768c8134 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c177fa1cd0edaf2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf9000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c4879961f2a1d6e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c4879961f2a1d6e new file mode 100644 index 00000000000..863e835e10e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c4879961f2a1d6e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ\x0000000000000000000000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c7aeb868d45c154 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c7aeb868d45c154 new file mode 100644 index 00000000000..49be14ccb6c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c7aeb868d45c154 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x8800000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c94fde3377bb1bd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c94fde3377bb1bd new file mode 100644 index 00000000000..1f1921a06b8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5c94fde3377bb1bd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J00000000\xb00\x9f\x9f@@@@@@@\xff@@@@@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cb1fef0fc8a962d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cb1fef0fc8a962d new file mode 100644 index 00000000000..e7afb41a8cc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cb1fef0fc8a962d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xf600000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cd6398b7cf0b2ac b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cd6398b7cf0b2ac new file mode 100644 index 00000000000..32f917b9fe6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5cd6398b7cf0b2ac @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6900000\x040\x000\x140\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d05c4b51fb6b8e4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d05c4b51fb6b8e4 new file mode 100644 index 00000000000..bcebf4866d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d05c4b51fb6b8e4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc300\x8e00\xc300\xc200\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30\xc300\xc300\x8e\xc300\xc300\xc200\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc3000000000\xc3000\xc30\xc300\xc20000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d3b44f136a09487 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d3b44f136a09487 new file mode 100644 index 00000000000..13fefc5231c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d3b44f136a09487 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x84\x8400\xfa\x7f\x80\x00\x0000\xfa\x7f\x80\x00\x000B000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d438a2a81fb3860 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d438a2a81fb3860 new file mode 100644 index 00000000000..128726618d1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d438a2a81fb3860 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80\xf80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d65f3b9b623bb47 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d65f3b9b623bb47 new file mode 100644 index 00000000000..8161c06ac0e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5d65f3b9b623bb47 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x840\x000\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5dccdadb4a86cf44 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5dccdadb4a86cf44 new file mode 100644 index 00000000000..8aa3dadcb2d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5dccdadb4a86cf44 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2;\x800000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5df167b4d2023234 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5df167b4d2023234 new file mode 100644 index 00000000000..bad2a30eb8b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5df167b4d2023234 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e700202A7\xa3J81001011000J10000121002A1!A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e1eb2182291c20d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e1eb2182291c20d new file mode 100644 index 00000000000..5285b45b111 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e1eb2182291c20d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e531ec13ca98ee1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e531ec13ca98ee1 new file mode 100644 index 00000000000..d7b0f6e1902 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e531ec13ca98ee1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xa300\xf6\xa30000\xf6\xf6\xf6\xa300\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xa300\xf6\xa30000\xf6\xf6\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xa300\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e6df8d37353b346 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e6df8d37353b346 new file mode 100644 index 00000000000..3bc44dfb930 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e6df8d37353b346 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2D00000@0@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e822c067c5fcc3d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e822c067c5fcc3d new file mode 100644 index 00000000000..665adc10dea --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e822c067c5fcc3d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xc3G0000000A0\xc3G0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e94764a5a144c95 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e94764a5a144c95 new file mode 100644 index 00000000000..dba721e7b41 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e94764a5a144c95 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0\"0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e9ee9cfe8246d71 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e9ee9cfe8246d71 new file mode 100644 index 00000000000..6e8954012bc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5e9ee9cfe8246d71 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbb\xbb0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5eaedc53c02b91af b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5eaedc53c02b91af new file mode 100644 index 00000000000..2791ec76c96 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5eaedc53c02b91af @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9 0\xf9 000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ed6060e0b30890d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ed6060e0b30890d new file mode 100644 index 00000000000..c4b0ca0c4dd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5ed6060e0b30890d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa300\xf60\xf6\xf6\xf6\xf6\xf6\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f084c9f3b916010 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f084c9f3b916010 new file mode 100644 index 00000000000..47213da266c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f084c9f3b916010 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e0000000000\xa0\xa0\xa0\xa0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f08f67bb1e88ee6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f08f67bb1e88ee6 new file mode 100644 index 00000000000..07a7cc29ea9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f08f67bb1e88ee6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f0e89415982132e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f0e89415982132e new file mode 100644 index 00000000000..72ab5397df4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f0e89415982132e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f48ff6e09d88b2c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f48ff6e09d88b2c new file mode 100644 index 00000000000..edeb77d6d8b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5f48ff6e09d88b2c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\x7f\xffB00\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\x7f\xffB00\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\x7f\xffA0\x7f\xffA080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fb60e5c0b5135a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fb60e5c0b5135a3 new file mode 100644 index 00000000000..dd80796efc6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fb60e5c0b5135a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf0\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x82\x8200000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca4702ffed2ae2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca4702ffed2ae2 new file mode 100644 index 00000000000..1211c743d70 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca4702ffed2ae2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa1\xf6\xa200\xf6\xa200\xf6\xa3\xf6\xa1\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa1\xf6\xa20000\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa2000000\xf6\xa2\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa1\xf6\xa20000\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa200000000\xf6\xa1\xf6\xa200000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca9433f7c620ec b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca9433f7c620ec new file mode 100644 index 00000000000..b3d65fc0088 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/5fca9433f7c620ec @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xe90e\xad000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6020b2159d7e72ca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6020b2159d7e72ca new file mode 100644 index 00000000000..8348ce43582 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6020b2159d7e72ca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfbC\xff000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6058ed3f957daa0a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6058ed3f957daa0a new file mode 100644 index 00000000000..95c13932de9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6058ed3f957daa0a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x9f\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6066e25d13db21d0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6066e25d13db21d0 new file mode 100644 index 00000000000..a4e235bbc6d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6066e25d13db21d0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600\xfa00000\xfa0000\xfa0000\xfa00000\xfa0000\xfa00008080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/606b2ed27ec5e623 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/606b2ed27ec5e623 new file mode 100644 index 00000000000..0fe0d58f8e8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/606b2ed27ec5e623 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xdb00000000\xdb00000000\xdb00000000\xdb00000000\xdb00000000\xdb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6084e84acb6d29b5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6084e84acb6d29b5 new file mode 100644 index 00000000000..49a0ad35e3d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6084e84acb6d29b5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf0\xb000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/60a825de7b2c710a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/60a825de7b2c710a new file mode 100644 index 00000000000..d8b177383f5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/60a825de7b2c710a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xfa00000\xce00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/611534f827877ad9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/611534f827877ad9 new file mode 100644 index 00000000000..a8c017ef8ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/611534f827877ad9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000\xba000000V0000000000000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/61b3ca8f37dc2385 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/61b3ca8f37dc2385 new file mode 100644 index 00000000000..0447172aaa0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/61b3ca8f37dc2385 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X<000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/621811f05efe7237 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/621811f05efe7237 new file mode 100644 index 00000000000..64a8b284169 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/621811f05efe7237 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\xf3\xad\xb000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62259436c0e27f0d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62259436c0e27f0d new file mode 100644 index 00000000000..f67100d526b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62259436c0e27f0d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x95\x95\x95\x95\x95\x95\x95") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62400174b224d5c0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62400174b224d5c0 new file mode 100644 index 00000000000..de37f1c2dc0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62400174b224d5c0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00000\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8e00000\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe70A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62774aa60a5ec0f7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62774aa60a5ec0f7 new file mode 100644 index 00000000000..608ea07ed6c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62774aa60a5ec0f7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb4\xd20\xc90\xd50\xd20\xc90\xd50\xc90\xc90") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/628c32ebd5eeab51 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/628c32ebd5eeab51 new file mode 100644 index 00000000000..16de71699a8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/628c32ebd5eeab51 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf5") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/629a8f7e8d62d8d1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/629a8f7e8d62d8d1 new file mode 100644 index 00000000000..7a31116c729 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/629a8f7e8d62d8d1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40000080_@\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62d721024de4ebc2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62d721024de4ebc2 new file mode 100644 index 00000000000..dbf2d70e930 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62d721024de4ebc2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf6\xf6\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62f91c9bf2b2a1de b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62f91c9bf2b2a1de new file mode 100644 index 00000000000..8c14823042d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/62f91c9bf2b2a1de @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersionA0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b5ab5612374b9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b5ab5612374b9 new file mode 100644 index 00000000000..4bfd4eb88e5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b5ab5612374b9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b94314cf654fc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b94314cf654fc new file mode 100644 index 00000000000..9bf8c7f8462 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637b94314cf654fc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xc2@\x84\xc2@\xc2@0\x84\xc2@\x84\xc2@0\xc2@0\xc2@0\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637c8b178888b211 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637c8b178888b211 new file mode 100644 index 00000000000..aaa1f56d14a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/637c8b178888b211 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9 2A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63d397eff2683574 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63d397eff2683574 new file mode 100644 index 00000000000..29bb10b6752 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63d397eff2683574 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63f9ea2153e3c649 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63f9ea2153e3c649 new file mode 100644 index 00000000000..041db483d63 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/63f9ea2153e3c649 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xc2@\x84\xc2@0\xc2J0000000000\x84\xc2@\x84\xc2@0\xc2@0\xc2@0\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/645a66c3a0a58c9d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/645a66c3a0a58c9d new file mode 100644 index 00000000000..22e79103ba0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/645a66c3a0a58c9d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf3") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64627f64fe8f1dec b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64627f64fe8f1dec new file mode 100644 index 00000000000..f97543dcd1d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64627f64fe8f1dec @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f\x9f\x9f0\xff\x9f\x9f\x9f\x9f\x9f\x9f0\xff\x9f\x9f\x9f0\xff\x9f\x9f\x9f\x9f0\xff\x9f\x9f\x9f\x9f\x9f\x9f0\xff\x9f\x9f\x9f0\xff\x9f0\xff\xff\xff\xff\xff\xff\x9f0\xff\x9f0\xff\xff\xff\xff\xff\xff\x9f0\xff\xff\xff\xff\xff\xff\x9f0\xff\x9f0\xff\xff\xff\xff\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64acd22058134cc8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64acd22058134cc8 new file mode 100644 index 00000000000..cf832f555a1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64acd22058134cc8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf10A0A\x01000A0A0A0A0A0A0\xf1\xf1\xf1\xf1\xf10\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64cafadd8e741341 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64cafadd8e741341 new file mode 100644 index 00000000000..15e6f9e2cb3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/64cafadd8e741341 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J00000\r\r\r\r00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65101cc1b36d65ea b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65101cc1b36d65ea new file mode 100644 index 00000000000..246c008c01e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65101cc1b36d65ea @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa8\xf9\x020000\xf9\x02000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65260126a105f3d0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65260126a105f3d0 new file mode 100644 index 00000000000..80e2d73660c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65260126a105f3d0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fd0000g0000000v00ڙ000000000000000000A0A0A0A0A0A0A0A0A0A0g0000000v0ڙ0000000000000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/652cdaf905e318a5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/652cdaf905e318a5 new file mode 100644 index 00000000000..d850c505504 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/652cdaf905e318a5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\x00\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6550b67d2954f126 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6550b67d2954f126 new file mode 100644 index 00000000000..bf7f8ec2cee --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6550b67d2954f126 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf9000\x84\xf9000\x84\xf900\xf900\xf900\x84\xf900\xf900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6554427ffaac34e5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6554427ffaac34e5 new file mode 100644 index 00000000000..55c35bab958 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6554427ffaac34e5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0a000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65646a5df2e00873 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65646a5df2e00873 new file mode 100644 index 00000000000..f80bd467d73 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65646a5df2e00873 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x980808080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65717f828798eb7d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65717f828798eb7d new file mode 100644 index 00000000000..dee28891008 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/65717f828798eb7d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ac8d0d08bcaf4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ac8d0d08bcaf4 new file mode 100644 index 00000000000..0e2d04ab41f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ac8d0d08bcaf4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f0000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ebd86f577ccfc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ebd86f577ccfc new file mode 100644 index 00000000000..16f64833c53 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/662ebd86f577ccfc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9fb0\xecb0\xeca\xeea\xeca\xeca\xeca\xeca\xec\x9fb0\xecb0\xeca\xeea\xeca\xeca\xeca\xeca\xec\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6660ac91def274db b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6660ac91def274db new file mode 100644 index 00000000000..3fc348603ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6660ac91def274db @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9000\x84\xf901\xf900\xf900\x84\xf9\f0\xf900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/669704495295f1b9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/669704495295f1b9 new file mode 100644 index 00000000000..d8a1f7e418e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/669704495295f1b9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0000080DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/66ba03f3fa6228a2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/66ba03f3fa6228a2 new file mode 100644 index 00000000000..5c768ff213a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/66ba03f3fa6228a2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\x00\x000\xf9\x00\x0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6717b8b9aa8a9130 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6717b8b9aa8a9130 new file mode 100644 index 00000000000..d6bc6897139 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6717b8b9aa8a9130 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00\x8e0000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\x8e00\x8e0000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf60\xf600A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6720e13e00594dd4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6720e13e00594dd4 new file mode 100644 index 00000000000..db2c95c09ac --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6720e13e00594dd4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6102000\xc1\xfb\xd100000000\xc1\xfb\xe20000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6725bf2da8820227 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6725bf2da8820227 new file mode 100644 index 00000000000..e3fcc651840 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6725bf2da8820227 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xfa0000Z0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/672974c98baa628f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/672974c98baa628f new file mode 100644 index 00000000000..1cd2b6013ca --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/672974c98baa628f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xdb0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6748bf9e58a5f486 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6748bf9e58a5f486 new file mode 100644 index 00000000000..37c55745143 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6748bf9e58a5f486 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2V00\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r00000A0V00\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6757b9a74799f071 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6757b9a74799f071 new file mode 100644 index 00000000000..2b2edfe2045 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6757b9a74799f071 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xa0\xa0\xa0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/67fcb53963ec274d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/67fcb53963ec274d new file mode 100644 index 00000000000..7765ded9e92 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/67fcb53963ec274d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68096548375bcc09 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68096548375bcc09 new file mode 100644 index 00000000000..65543ebc3f1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68096548375bcc09 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xaax\x0f0000000\x9600000000\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/680c0a466ba84a4d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/680c0a466ba84a4d new file mode 100644 index 00000000000..63ff861a094 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/680c0a466ba84a4d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2@\xc2@\xc2@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6829292c985f56e4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6829292c985f56e4 new file mode 100644 index 00000000000..75b1877e947 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6829292c985f56e4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000\xf5\xf5\xf5\xf50000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6833a097862b6ede b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6833a097862b6ede new file mode 100644 index 00000000000..8a956582eb9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6833a097862b6ede @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaZ000\xfaZ000\xfaZ000\xfaZ000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/687fac93a56a5086 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/687fac93a56a5086 new file mode 100644 index 00000000000..11da8f3466b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/687fac93a56a5086 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68830b4d769f0819 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68830b4d769f0819 new file mode 100644 index 00000000000..809663df8f0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68830b4d769f0819 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xbf\xbf\xff\xbf\xff\xbf\xff\xbf\xff\xff\xbf\xff\xbf\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6898b7c8763fa190 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6898b7c8763fa190 new file mode 100644 index 00000000000..0f9a3efed0b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6898b7c8763fa190 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf9010\x84\xf9000\x84\xf901\xf900\xf900\x84\xf900\xf900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68a964728967665d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68a964728967665d new file mode 100644 index 00000000000..0477eb0de3c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68a964728967665d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcf\xcfϢe000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68adb5bb1634d0f4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68adb5bb1634d0f4 new file mode 100644 index 00000000000..466021a5048 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68adb5bb1634d0f4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600800\xc300000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68c26915a5d76377 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68c26915a5d76377 new file mode 100644 index 00000000000..33bc665b7bc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/68c26915a5d76377 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9fA0A0A0A0A0A0A0A0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a2c5ac0118392b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a2c5ac0118392b new file mode 100644 index 00000000000..3099da74009 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a2c5ac0118392b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf0@00000000000F00000000000000000000000000000000000d0000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a98c01019abc3f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a98c01019abc3f new file mode 100644 index 00000000000..faffe1c1f83 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69a98c01019abc3f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd6\xd6\xd6\xc1\xf900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69c9a8cf9ccaede2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69c9a8cf9ccaede2 new file mode 100644 index 00000000000..8d0446c5793 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69c9a8cf9ccaede2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0a0a\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69eec6f09e6bd419 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69eec6f09e6bd419 new file mode 100644 index 00000000000..b60a5f81f0e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/69eec6f09e6bd419 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xdf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a2d1b54bc4c83e7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a2d1b54bc4c83e7 new file mode 100644 index 00000000000..72821f7594a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a2d1b54bc4c83e7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x7fa\xff\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a3112466b914464 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a3112466b914464 new file mode 100644 index 00000000000..9f87998331a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a3112466b914464 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0a0a0a") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a36881a2e29ae1d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a36881a2e29ae1d new file mode 100644 index 00000000000..437de9f11d5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6a36881a2e29ae1d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900C000\xd900\xd9000\xd900\xd900\xd900\xd900\xd900\xd900\xd90000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aabab62ad170202 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aabab62ad170202 new file mode 100644 index 00000000000..a03487c303f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aabab62ad170202 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aba68d14bae83aa b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aba68d14bae83aa new file mode 100644 index 00000000000..da370ac1bc9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6aba68d14bae83aa @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf00000000000000000000000000000000000000000000000000\x840000\x8400000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af65fc691829f92 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af65fc691829f92 new file mode 100644 index 00000000000..41a8eeb0c7d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af65fc691829f92 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa1B00C000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af8f3bceac1fab1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af8f3bceac1fab1 new file mode 100644 index 00000000000..09d99b44728 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6af8f3bceac1fab1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.0000\x7f\x00000000000\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b\x1b0\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1fA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6afa60e0d0922d6c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6afa60e0d0922d6c new file mode 100644 index 00000000000..f96931a462c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6afa60e0d0922d6c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xe8071107Ac98B50Ab1112020000G00000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b3ef3911be26341 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b3ef3911be26341 new file mode 100644 index 00000000000..dc2f8b17bc6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b3ef3911be26341 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9X1A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b5392625e10a1c0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b5392625e10a1c0 new file mode 100644 index 00000000000..7afe801a3d4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b5392625e10a1c0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b584ff7ac50a50a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b584ff7ac50a50a new file mode 100644 index 00000000000..88a5809553a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6b584ff7ac50a50a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3\xc2Xp80710002210B000800000001$1120200001010000000000z000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6bdfd8b2021b1a9e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6bdfd8b2021b1a9e new file mode 100644 index 00000000000..ba272ef663b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6bdfd8b2021b1a9e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e魰000@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c27bec3337d1e05 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c27bec3337d1e05 new file mode 100644 index 00000000000..eef1ba988c7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c27bec3337d1e05 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e`````0\x8e`````0000000\x8e`````00```0```000000\x8e`````00```0```0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c460c92c1257a4f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c460c92c1257a4f new file mode 100644 index 00000000000..86b5cf6040c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c460c92c1257a4f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa2\xf6\xa1\xf6\xa2\xf60\xf6\xa3000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c4d08db7dbc7137 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c4d08db7dbc7137 new file mode 100644 index 00000000000..122b0f7cea0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6c4d08db7dbc7137 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f@@@\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6caf2720e4a08b36 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6caf2720e4a08b36 new file mode 100644 index 00000000000..7470dcbd1d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6caf2720e4a08b36 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xe30\xe30\xe30\xe30") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d1b7f46eb9da226 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d1b7f46eb9da226 new file mode 100644 index 00000000000..154e0186f9d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d1b7f46eb9da226 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\x8400\xf9\x0100\x840\x84\xf9\x010000\xf9\x0000\x84\xf9\x0100000\xf9\x000\x84\x84\xf9\x0100\xf9\x0100\xf9\x01000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d5b6efd5b0d47ee b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d5b6efd5b0d47ee new file mode 100644 index 00000000000..009821f5291 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d5b6efd5b0d47ee @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc600\xc600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d60f99d8b673471 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d60f99d8b673471 new file mode 100644 index 00000000000..9dece91cbcf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d60f99d8b673471 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3@\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xff\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\x9f\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xc3@\xff\xc3@\x9f\xc3@\xc3@\xff\xc3@\xff\xffC0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d69899e76b487fb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d69899e76b487fb new file mode 100644 index 00000000000..ef0ef9463d6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6d69899e76b487fb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xa200@\xc3@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e270ce31914b3bd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e270ce31914b3bd new file mode 100644 index 00000000000..f0ce0579076 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e270ce31914b3bd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc3A00001020\xc3A0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5b52fa6904fda4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5b52fa6904fda4 new file mode 100644 index 00000000000..1d2d24a5977 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5b52fa6904fda4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xfbX0000000\xfbX0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f3b3204f95e35 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f3b3204f95e35 new file mode 100644 index 00000000000..7a5bdeb5d4c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f3b3204f95e35 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbb\x860000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f97f8eb53f42e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f97f8eb53f42e new file mode 100644 index 00000000000..ae40267d8ae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e5f97f8eb53f42e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x8b00000\x8600000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e8f57030782ad20 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e8f57030782ad20 new file mode 100644 index 00000000000..13e3f57b899 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6e8f57030782ad20 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000\x8e0\x81\x81\x81\x81\x81\x81\x81\x8100000000000\x8e00000000000000000000\x8e000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eec46fbbf2a1eca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eec46fbbf2a1eca new file mode 100644 index 00000000000..96f8a4c4ea1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eec46fbbf2a1eca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb0\x860000000\x800\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eef6dc9819b9152 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eef6dc9819b9152 new file mode 100644 index 00000000000..0b4027eea68 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6eef6dc9819b9152 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xf900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1dce16f0b2217c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1dce16f0b2217c new file mode 100644 index 00000000000..40792fc965c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1dce16f0b2217c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6102000\xc1\xfb000000000\xc1\xfb00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1f0157aa06f890 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1f0157aa06f890 new file mode 100644 index 00000000000..aa7e15492d8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f1f0157aa06f890 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd20A080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f6cfacf90a8494b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f6cfacf90a8494b new file mode 100644 index 00000000000..65e46942789 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6f6cfacf90a8494b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa1\xf6\xa2\xf60\xf6\xa2\xf6\xa1\xf6\xa2\xf60\xf6\xa1\xf6\xa2\xf60\xf6000\xf6\xa2\xf6\xa1\xf6\xa2\xf60\xf600000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fa0e1fce6bd4797 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fa0e1fce6bd4797 new file mode 100644 index 00000000000..cb8955bf739 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fa0e1fce6bd4797 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa61020\xc1\xfb\xff\xff000000000\xc1\xfb\xff\xff000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fb14e105045fe70 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fb14e105045fe70 new file mode 100644 index 00000000000..779f6977a06 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/6fb14e105045fe70 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf`0`00000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/70bc8e69f5d66e8c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/70bc8e69f5d66e8c new file mode 100644 index 00000000000..3f11eca7c86 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/70bc8e69f5d66e8c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\x89000\xf80\xf80\xf80\xf80\xf80\xf800\xf800\xf800000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/71194410927f85d0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/71194410927f85d0 new file mode 100644 index 00000000000..5ab737c7bf3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/71194410927f85d0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8a000\xfb00000000\xfb00000000000\xfb00000000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/716f1358a59b0f3f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/716f1358a59b0f3f new file mode 100644 index 00000000000..b8876735bc8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/716f1358a59b0f3f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00B000A0\xbfA20@0A00A10B000@0\xffA10@0@0\xffB00\xa2A0\xbf@0A00B000A0\xbfA20@0A00A10B000@0\xffA10@0\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7202ff97885bde82 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7202ff97885bde82 new file mode 100644 index 00000000000..a5c0ce985cd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7202ff97885bde82 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xa4\xa0000\xa00\xa00000\xa00\xa00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7213f165b12a546b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7213f165b12a546b new file mode 100644 index 00000000000..f10fbd8b02a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7213f165b12a546b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xc100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7227f8c4136335a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7227f8c4136335a8 new file mode 100644 index 00000000000..6fe5f98de1b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7227f8c4136335a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa500;\xf600000000;\xdb00000000;\xf600000000;\xdb00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/722e096c046c7d5d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/722e096c046c7d5d new file mode 100644 index 00000000000..381e0bdd508 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/722e096c046c7d5d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7fp0000000000000000p0000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7261f01c853f2284 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7261f01c853f2284 new file mode 100644 index 00000000000..df9b5771239 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7261f01c853f2284 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2900900900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7297258aba4454dc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7297258aba4454dc new file mode 100644 index 00000000000..489df7c28ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7297258aba4454dc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e!1092\xa2J01712127A11J11Y20211011A2 a11") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72be28768ae49b0d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72be28768ae49b0d new file mode 100644 index 00000000000..679a74f4eef --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72be28768ae49b0d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd700") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72c117512eced531 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72c117512eced531 new file mode 100644 index 00000000000..944c9c5d7ec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/72c117512eced531 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000\x1a0000Z0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/730c78951cba4e48 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/730c78951cba4e48 new file mode 100644 index 00000000000..9500ce00c9e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/730c78951cba4e48 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\x9f\xff\xff\x9f\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/732b8cb99d3c3e90 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/732b8cb99d3c3e90 new file mode 100644 index 00000000000..b2ea1235ead --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/732b8cb99d3c3e90 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x00A00\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7416bfb9dbb1003f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7416bfb9dbb1003f new file mode 100644 index 00000000000..7f09574650f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7416bfb9dbb1003f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x7fa0\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/742c93f81eddc506 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/742c93f81eddc506 new file mode 100644 index 00000000000..fb375d30b75 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/742c93f81eddc506 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ\xa1dϡϡ0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/745f0706c53a6582 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/745f0706c53a6582 new file mode 100644 index 00000000000..2a492e444a3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/745f0706c53a6582 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa60000000000B0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/747c7e10abe1039b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/747c7e10abe1039b new file mode 100644 index 00000000000..a4e42dd7480 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/747c7e10abe1039b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xcf\xcfdϡ000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7495da9993117e05 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7495da9993117e05 new file mode 100644 index 00000000000..80a5144edb7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7495da9993117e05 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d1c80a5f5c519e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d1c80a5f5c519e new file mode 100644 index 00000000000..4a96a9238af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d1c80a5f5c519e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80\xb80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d902474887cdfd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d902474887cdfd new file mode 100644 index 00000000000..48cf117ed23 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74d902474887cdfd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74f32e0d665b8fde b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74f32e0d665b8fde new file mode 100644 index 00000000000..bd11d6bb045 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74f32e0d665b8fde @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xf7\xf7\xf7\xf700000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74fa15c6c593d153 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74fa15c6c593d153 new file mode 100644 index 00000000000..25d7a080155 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/74fa15c6c593d153 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\xfd0A080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75011f06261e0c07 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75011f06261e0c07 new file mode 100644 index 00000000000..0cf70ed4b5d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75011f06261e0c07 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fcڀ0\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75279bb7cd7f6c99 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75279bb7cd7f6c99 new file mode 100644 index 00000000000..86653e9917f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75279bb7cd7f6c99 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xc3P00000000\xff00000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75a72c688944fd1e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75a72c688944fd1e new file mode 100644 index 00000000000..261692d2736 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75a72c688944fd1e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa1A0\xa1A0\xa1A0\xa1e00000\xa1A0\xa1A0\xa1e00000\xa1A0\xa1A0\xa1A0\xa1e00000\xa1A0\xa1A0\xa1A0\xa1A00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75acff3c7dd4d09f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75acff3c7dd4d09f new file mode 100644 index 00000000000..efaea1e6984 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75acff3c7dd4d09f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1A0\xc1A0\xc1A0\x9f\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xff\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\x9f\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xff\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c1d15fe5c21361 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c1d15fe5c21361 new file mode 100644 index 00000000000..8484a7ddcbb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c1d15fe5c21361 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2\x7f\xff0\x7f\xff0\x7f\xff\xa2\x7f\xff\xa2\x7f\xff\xa2\x7f\xff0\x7f\xff0\x7f\xff\xa2\x7f\xff\xa2\x7f\xff0\x7f\xff80\x7f\xff\xa2\x7f\xff0\x7f\xff80\x7f\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c762c8b1ddc690 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c762c8b1ddc690 new file mode 100644 index 00000000000..f61d5601a41 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75c762c8b1ddc690 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\x9f\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xe80\xff\xf9\xe80\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75d078845fdafa7c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75d078845fdafa7c new file mode 100644 index 00000000000..941a0f23c6e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/75d078845fdafa7c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76035f3628c6dcca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76035f3628c6dcca new file mode 100644 index 00000000000..43470507a67 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76035f3628c6dcca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300800\xa6000000\xc30000000009000\xa60000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76cb191530dd6b1a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76cb191530dd6b1a new file mode 100644 index 00000000000..69078e63491 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76cb191530dd6b1a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xad0000000000000000000\xad\xad\xad\xad00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76d19064f432e508 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76d19064f432e508 new file mode 100644 index 00000000000..906ed60b727 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76d19064f432e508 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x00700\xfb70000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76fec06d569637f3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76fec06d569637f3 new file mode 100644 index 00000000000..86cb11945d8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/76fec06d569637f3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc0\xc0\xc0\xc0\xc0\xc0\xc0\xc0\xc00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/770abd7a0691d3a2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/770abd7a0691d3a2 new file mode 100644 index 00000000000..216c0cc6308 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/770abd7a0691d3a2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x1b00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/774d76d087b9ae8c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/774d76d087b9ae8c new file mode 100644 index 00000000000..36798e8aa1f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/774d76d087b9ae8c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7776ce7a59643d8e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7776ce7a59643d8e new file mode 100644 index 00000000000..326e50bf58f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7776ce7a59643d8e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb4\xd20\xc90\xd50\xd20\xc90\xd20\xc90\xd50\xd20\xc90\xd50\xc90\xc90\xd50\xc90\xc90") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/77f57985bcf8e4af b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/77f57985bcf8e4af new file mode 100644 index 00000000000..961e3c5cb14 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/77f57985bcf8e4af @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x85\xa2e00000\x85\xf4\xf4\xf4\x85\xf4\xf4\xf4\xf4\xf40A0\xf4\xf4\xf4\x85\xf4\xf4\xf4\xf4\xf40A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/780f823bba3860ac b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/780f823bba3860ac new file mode 100644 index 00000000000..862fa81926d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/780f823bba3860ac @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4e00000\xa4e00000e00000800e00000000e0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/784053cd38076124 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/784053cd38076124 new file mode 100644 index 00000000000..04ca4ee9484 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/784053cd38076124 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\xf90B0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/785cf1c3fc0f01b6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/785cf1c3fc0f01b6 new file mode 100644 index 00000000000..e4c1d5985e7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/785cf1c3fc0f01b6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/786823bb2c6ce835 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/786823bb2c6ce835 new file mode 100644 index 00000000000..92cf1d12bc8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/786823bb2c6ce835 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf1A0A0A0A0A0A0A0A0A0A0A0A0A0A0A0\xf1\xf1\xf1\xf1\xf10\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7893cc7c125963b0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7893cc7c125963b0 new file mode 100644 index 00000000000..aa2dd964398 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7893cc7c125963b0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78c29c22864003da b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78c29c22864003da new file mode 100644 index 00000000000..b1eceba9da6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78c29c22864003da @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3C00000000000\xc3G0000000\xc3C00000000000\xc3C00000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78fccd13348014f0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78fccd13348014f0 new file mode 100644 index 00000000000..d98fbf7026c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/78fccd13348014f0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\xfac0=00\xfaa0=000\xfac0=0\xfaay00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79434458b56580b6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79434458b56580b6 new file mode 100644 index 00000000000..c1ed9613c10 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79434458b56580b6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfb\x00\x00\x00 0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79823deed7cf303d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79823deed7cf303d new file mode 100644 index 00000000000..320c001d88a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79823deed7cf303d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900C000\xd9000\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900C0100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/798a1d8c2e099b21 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/798a1d8c2e099b21 new file mode 100644 index 00000000000..fe9fe11b081 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/798a1d8c2e099b21 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00B100A10B000@0\xffB00\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79af8ae1fc6835bb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79af8ae1fc6835bb new file mode 100644 index 00000000000..2637c46c47b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79af8ae1fc6835bb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79b7d1d1ec3fa9aa b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79b7d1d1ec3fa9aa new file mode 100644 index 00000000000..0653a8a8227 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79b7d1d1ec3fa9aa @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79f926a51f96618f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79f926a51f96618f new file mode 100644 index 00000000000..ed5621c7737 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/79f926a51f96618f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81a\x81\x81C00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3811858ca2d373 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3811858ca2d373 new file mode 100644 index 00000000000..41b289dac56 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3811858ca2d373 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd5\xd5\xd5\xd50") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3c2b9dd9c5025a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3c2b9dd9c5025a new file mode 100644 index 00000000000..bb90b57f034 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a3c2b9dd9c5025a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\xff\x9f\x9f\xff\xff\xff\x9f\xff\x9f\x9f\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4310a7087a3f1b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4310a7087a3f1b new file mode 100644 index 00000000000..8a136e4d4bb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4310a7087a3f1b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000i0\xeb\xe9000000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4cfb59a6b58942 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4cfb59a6b58942 new file mode 100644 index 00000000000..a663e656073 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a4cfb59a6b58942 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd9\xd9\xf7\xd9\xd9\xf7\x8400\xd9\xd9\xf7\xd9\xd9\xf7000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a5be2eefab24f4e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a5be2eefab24f4e new file mode 100644 index 00000000000..6efb176e8da --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a5be2eefab24f4e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xc600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a7c39790fe126e5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a7c39790fe126e5 new file mode 100644 index 00000000000..a8ab27881cd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a7c39790fe126e5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xf60") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a8add6959629c07 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a8add6959629c07 new file mode 100644 index 00000000000..b0a2af09156 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a8add6959629c07 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xab000000\x030\x030\x030\x030\x030\x030\x030\x030") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a9052ca39fc001b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a9052ca39fc001b new file mode 100644 index 00000000000..d9dbcf0c6c4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7a9052ca39fc001b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7aa031f797e72826 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7aa031f797e72826 new file mode 100644 index 00000000000..8836a49bcc6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7aa031f797e72826 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xa300\xf6\xa300\xf6\xa3000000\xf6\xa300\xf6\xa300000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7af2a2529ec01c78 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7af2a2529ec01c78 new file mode 100644 index 00000000000..f45d4bee451 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7af2a2529ec01c78 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e`````0000000\x8e`````00```0```0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b046c7d3e3ab8a9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b046c7d3e3ab8a9 new file mode 100644 index 00000000000..9286f741d25 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b046c7d3e3ab8a9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000\x8e0\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8100000000000\x8e00000000000000000000\x8e000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b0d09c703aebc9d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b0d09c703aebc9d new file mode 100644 index 00000000000..ecfd0658ea3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b0d09c703aebc9d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfb\x00\x00\x00\x000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b3f834c6db6c295 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b3f834c6db6c295 new file mode 100644 index 00000000000..30a4e9648c0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b3f834c6db6c295 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b476e4659c4b633 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b476e4659c4b633 new file mode 100644 index 00000000000..83840672d6a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b476e4659c4b633 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6C00000000C00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b492f509f2a13d2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b492f509f2a13d2 new file mode 100644 index 00000000000..e8a66b2d873 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b492f509f2a13d2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xe6Dkind\xed") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b52c1776ec47638 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b52c1776ec47638 new file mode 100644 index 00000000000..a5a22e1abde --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7b52c1776ec47638 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA0\xbfA0\xbfA0\xbf@0\xff\xff\xff\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bcbff9812fc2e29 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bcbff9812fc2e29 new file mode 100644 index 00000000000..2dfafe34467 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bcbff9812fc2e29 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6000000\xc1000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bd39fd57937cb0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bd39fd57937cb0e new file mode 100644 index 00000000000..34db1cc0e6a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bd39fd57937cb0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb200a\xec0a\xee0a\xec0a\xec0800b0\xec0a\xee0a\xec0a\xec0a\xcc0a\xec0a\xec0a\xec0a\xec0a\xec0a\xec0b0\xec0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bf732d042871b66 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bf732d042871b66 new file mode 100644 index 00000000000..6b938784aad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7bf732d042871b66 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa1A0\x81\xa1A0\x81\xa1A0\x81\xa1A080A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c4ebb58ae6b4da6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c4ebb58ae6b4da6 new file mode 100644 index 00000000000..dc3ae79de97 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c4ebb58ae6b4da6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xfb 0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c6c04e1bcf526fb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c6c04e1bcf526fb new file mode 100644 index 00000000000..dfe4830e122 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c6c04e1bcf526fb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xa3\xf6\xf6\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xa300\xf6\xa30000\xf6\xf6\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xa300\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c75b6a091391c8f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c75b6a091391c8f new file mode 100644 index 00000000000..c9aaa95945c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c75b6a091391c8f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xf80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c781cff7187cb9b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c781cff7187cb9b new file mode 100644 index 00000000000..58237bb1692 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c781cff7187cb9b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf980A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c7c30f6607f0624 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c7c30f6607f0624 new file mode 100644 index 00000000000..5fa6dbb6bc9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7c7c30f6607f0624 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2;\x8000000000;\x8000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7cd8c920ebe214f7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7cd8c920ebe214f7 new file mode 100644 index 00000000000..416605c7596 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7cd8c920ebe214f7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf5\xf5\xf5\xf5\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d02d42f0c76ca82 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d02d42f0c76ca82 new file mode 100644 index 00000000000..834eb749cb3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d02d42f0c76ca82 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xda0000\xda0000\xda0000\xda0000p0000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d11137902a92c95 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d11137902a92c95 new file mode 100644 index 00000000000..a7385e27daf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d11137902a92c95 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9b00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d213975bcc8c750 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d213975bcc8c750 new file mode 100644 index 00000000000..b5bdf980d20 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d213975bcc8c750 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x9f\xf80\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d33650bdf52b579 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d33650bdf52b579 new file mode 100644 index 00000000000..c9232248d78 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d33650bdf52b579 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`\xff0A0\xa2\x7f`\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d3eb716607e17db b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d3eb716607e17db new file mode 100644 index 00000000000..5f92a404f5f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d3eb716607e17db @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f00\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d43546abdb4fa3a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d43546abdb4fa3a new file mode 100644 index 00000000000..906e15b1652 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d43546abdb4fa3a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xfbC\x80000010A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d4b6caa0c2c1364 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d4b6caa0c2c1364 new file mode 100644 index 00000000000..2b4f45679a2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d4b6caa0c2c1364 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0``````a0a0``````a0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d71a76884d72aa9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d71a76884d72aa9 new file mode 100644 index 00000000000..ff5657b4e70 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7d71a76884d72aa9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000\x8e00\x8d0000000000000000\x8e00000000000000000000000000\x8e000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dba34487314831d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dba34487314831d new file mode 100644 index 00000000000..fe8ba8dbb49 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dba34487314831d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xfaa0=0\x84\x84\xfaa0=00\xfaa0=000\xfaa0=000\xfaa0=0\x84\x84\xfaa0=00\xfaa0=000\xfaa0=00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbc9ecaacedb9e4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbc9ecaacedb9e4 new file mode 100644 index 00000000000..fa391fe4b8d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbc9ecaacedb9e4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xc2D0000A0\xc2D0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbd13c3368ad77c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbd13c3368ad77c new file mode 100644 index 00000000000..32469f3f1f8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7dbd13c3368ad77c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q11000001000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e0b2aec842b25ad b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e0b2aec842b25ad new file mode 100644 index 00000000000..3fc741a8085 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e0b2aec842b25ad @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e527f8decc2655e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e527f8decc2655e new file mode 100644 index 00000000000..2571364d68d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7e527f8decc2655e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84000\x840000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7eb595bd48887b80 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7eb595bd48887b80 new file mode 100644 index 00000000000..598da7a3554 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7eb595bd48887b80 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xc4\xc4\xc4\xc4\xc4\xc4\xc1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7ed0e5177fb30539 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7ed0e5177fb30539 new file mode 100644 index 00000000000..42c77d02c6c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7ed0e5177fb30539 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0000\xb70\xe90") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f0cd38089a03ae8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f0cd38089a03ae8 new file mode 100644 index 00000000000..9cc00775ab1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f0cd38089a03ae8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf900\xf900\xf900A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f169ae922759e2a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f169ae922759e2a new file mode 100644 index 00000000000..1faefc1d885 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f169ae922759e2a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa\xffa0\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f31ce55922d385c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f31ce55922d385c new file mode 100644 index 00000000000..877d10d301d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f31ce55922d385c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J00\n\n\n\n\n\n\n\n0@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f42f249805c3b02 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f42f249805c3b02 new file mode 100644 index 00000000000..6d6797847af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f42f249805c3b02 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x80DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f4462413c6aeece b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f4462413c6aeece new file mode 100644 index 00000000000..b91772a43af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f4462413c6aeece @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf5\xf5\xf5\xf5\xf5\x9f\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f9499243823c3dd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f9499243823c3dd new file mode 100644 index 00000000000..87862d6d846 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7f9499243823c3dd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xcaa0i00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fa9630e50a1a5d5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fa9630e50a1a5d5 new file mode 100644 index 00000000000..742cbf6b9cd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fa9630e50a1a5d5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\x8000000Dkind0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fea7df79eeda5a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fea7df79eeda5a3 new file mode 100644 index 00000000000..560d7c4c131 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/7fea7df79eeda5a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x840\xd8\x0100\xd8\x010000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8005acdae8dc7285 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8005acdae8dc7285 new file mode 100644 index 00000000000..dbce1756ff2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8005acdae8dc7285 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x83A0i0000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8016c9de7edfabf5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8016c9de7edfabf5 new file mode 100644 index 00000000000..5bc27491b20 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8016c9de7edfabf5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9X0\xf9X0\x9f\xf9X0\xf9x0\xf9X0\xff\xf900\xf9X0\xf9X0\xf9X0\xf9X1\xf9X0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/801e277f3668b278 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/801e277f3668b278 new file mode 100644 index 00000000000..df9dba55d73 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/801e277f3668b278 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf9\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8088cf3c48cfd245 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8088cf3c48cfd245 new file mode 100644 index 00000000000..f0b9f5e8646 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8088cf3c48cfd245 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd50") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8094f2806dc5a729 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8094f2806dc5a729 new file mode 100644 index 00000000000..ef844cfa10b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8094f2806dc5a729 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00A10@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80984e6e7d0ec61f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80984e6e7d0ec61f new file mode 100644 index 00000000000..13e29a2c781 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80984e6e7d0ec61f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4e00000e0000\xcd000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80bba2a72bc806d1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80bba2a72bc806d1 new file mode 100644 index 00000000000..f3deecba406 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/80bba2a72bc806d1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\xff\xff\xff\xff\xff\x9f\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/810fcf71eb8d047f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/810fcf71eb8d047f new file mode 100644 index 00000000000..8164a1256e2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/810fcf71eb8d047f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813341ee3da87172 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813341ee3da87172 new file mode 100644 index 00000000000..0438dd60759 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813341ee3da87172 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc2J20X00000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813da4d73afb86ba b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813da4d73afb86ba new file mode 100644 index 00000000000..94606e0d5f2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/813da4d73afb86ba @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc2J\x00000000000000\xc2Q00000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81ab8e7ed003a89a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81ab8e7ed003a89a new file mode 100644 index 00000000000..259715a79b3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81ab8e7ed003a89a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersionc\xc300Dkind80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b51e6a05b41861 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b51e6a05b41861 new file mode 100644 index 00000000000..9fb8c35b5a0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b51e6a05b41861 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfb\xff0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b60a543e31b22f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b60a543e31b22f new file mode 100644 index 00000000000..2138989de66 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81b60a543e31b22f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600\x7f\xff010\x7f\xff00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81bd1bfe96d0f44b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81bd1bfe96d0f44b new file mode 100644 index 00000000000..5e77e71d8be --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81bd1bfe96d0f44b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xb1\xb100000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81c54ac488e70f09 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81c54ac488e70f09 new file mode 100644 index 00000000000..6e4149bf432 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/81c54ac488e70f09 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x88\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/820f55779b886292 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/820f55779b886292 new file mode 100644 index 00000000000..aa01d3ee3b2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/820f55779b886292 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbCX000001A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82256e4f31445130 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82256e4f31445130 new file mode 100644 index 00000000000..e8771789813 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82256e4f31445130 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\x1b1e00000\x84\x8400\xf9\x1b1\xf9\x0170\xf9\x017000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/825fbfa922a3ffab b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/825fbfa922a3ffab new file mode 100644 index 00000000000..8bbfc7c5460 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/825fbfa922a3ffab @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82b06d48e70949d1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82b06d48e70949d1 new file mode 100644 index 00000000000..e820037ab23 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82b06d48e70949d1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\x1b1\xf9\x017000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82cbfeb4245120c4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82cbfeb4245120c4 new file mode 100644 index 00000000000..f2f479babfa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82cbfeb4245120c4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa2\xf6\xa3\xf6\xa300000000\xf6\xa3000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82f3f1c108e55364 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82f3f1c108e55364 new file mode 100644 index 00000000000..fb151e7e188 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/82f3f1c108e55364 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8302e089ee982f1c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8302e089ee982f1c new file mode 100644 index 00000000000..84841b051da --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8302e089ee982f1c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa510;\xf600000000;\xdb0000000000\xa500;\xf600000000;\xdb0000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832918c1765358a6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832918c1765358a6 new file mode 100644 index 00000000000..d13caf19bcb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832918c1765358a6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xc600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832d7cdb8a571a9d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832d7cdb8a571a9d new file mode 100644 index 00000000000..bf0d4786031 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/832d7cdb8a571a9d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf60\xf600\xf6\xa3\xf60\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839bd509b0b1e0ff b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839bd509b0b1e0ff new file mode 100644 index 00000000000..d04e0072860 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839bd509b0b1e0ff @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersionA0\xd900\xd80DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839f202bcac39b1b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839f202bcac39b1b new file mode 100644 index 00000000000..e661ad26acb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/839f202bcac39b1b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc200\xa6\xc300\xc300\xc20000\xc300000\xc30000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/83e93d23a6a4cb53 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/83e93d23a6a4cb53 new file mode 100644 index 00000000000..651d08a0cf5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/83e93d23a6a4cb53 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa1\xf6\xa200\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa1\xf6\xa2\xf6000\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa2\xf6\xa1\xf600000\xf6\xa2\xf6\xa1\xf6\xa200\xf600000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84176dcf8605a20a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84176dcf8605a20a new file mode 100644 index 00000000000..dc8c3773de7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84176dcf8605a20a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x840\xfaa000\xfax0=0\xfaa000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/845d3b8a1919b3e3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/845d3b8a1919b3e3 new file mode 100644 index 00000000000..f8bfc1dc2a6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/845d3b8a1919b3e3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9yx000\xf9yxA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84967e4fcb71b1fb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84967e4fcb71b1fb new file mode 100644 index 00000000000..803e1bc2f50 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84967e4fcb71b1fb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb4:0000Z") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84aa53eb1be8c63f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84aa53eb1be8c63f new file mode 100644 index 00000000000..6e47ac217df --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84aa53eb1be8c63f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x88000\x00\x00\x00\x010000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84b7c434b1392c36 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84b7c434b1392c36 new file mode 100644 index 00000000000..5fc8bd88f8c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/84b7c434b1392c36 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xdf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/853ee21cb55f2491 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/853ee21cb55f2491 new file mode 100644 index 00000000000..213cbfc449f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/853ee21cb55f2491 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xe60") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8551b1bb1ac79786 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8551b1bb1ac79786 new file mode 100644 index 00000000000..bafa1265f52 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8551b1bb1ac79786 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\xfac0=00\xfac0=000\xfac0=0\x84\x84\xfac0=00\xfac0=000\xfac0=0\xfaay00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/857e5becbaf8d912 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/857e5becbaf8d912 new file mode 100644 index 00000000000..7a2e96a9ecb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/857e5becbaf8d912 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xa2\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/85882299083d3965 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/85882299083d3965 new file mode 100644 index 00000000000..51564a48ec0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/85882299083d3965 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xdb00000000\xdb00000000\xdb00000000\xdb") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/859717d2fd8b1a23 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/859717d2fd8b1a23 new file mode 100644 index 00000000000..c8a0608a352 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/859717d2fd8b1a23 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0000000000\x9f00000\xff00\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8608317d0f226b5f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8608317d0f226b5f new file mode 100644 index 00000000000..c4138753f5a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8608317d0f226b5f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x83A0e00000\x83A00@A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8625534c61475d05 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8625534c61475d05 new file mode 100644 index 00000000000..c6aaeb38838 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8625534c61475d05 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xae\xae") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86504d70525eda9d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86504d70525eda9d new file mode 100644 index 00000000000..6a11796a946 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86504d70525eda9d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f```\xff0a00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86712eb0b5b175a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86712eb0b5b175a3 new file mode 100644 index 00000000000..4dad3ae87c6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86712eb0b5b175a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xd9\xd9\xf70\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/867458a94d2e4ce3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/867458a94d2e4ce3 new file mode 100644 index 00000000000..f96263a855c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/867458a94d2e4ce3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0\r0000000080@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/869e773a1e4e75dd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/869e773a1e4e75dd new file mode 100644 index 00000000000..098a15d5cd0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/869e773a1e4e75dd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xda0000\xda0000\xda0000\xda0000\xda0000\xda00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86c0e240e4639f5c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86c0e240e4639f5c new file mode 100644 index 00000000000..a23b52d145f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86c0e240e4639f5c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc8\xd2\xd2\xd2\xd2\xd2\xd2\xc8Ȣ0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86ccb9c9c5a26236 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86ccb9c9c5a26236 new file mode 100644 index 00000000000..5f0e0e10589 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86ccb9c9c5a26236 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a\x8a") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86f7dac2c82e3588 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86f7dac2c82e3588 new file mode 100644 index 00000000000..949aefc64e7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/86f7dac2c82e3588 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f@@@@@@@\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/870e6d0fbf1a5cf2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/870e6d0fbf1a5cf2 new file mode 100644 index 00000000000..050dddc024c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/870e6d0fbf1a5cf2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000D0000\xf80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8710ce7ac357a05d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8710ce7ac357a05d new file mode 100644 index 00000000000..d890c32c925 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8710ce7ac357a05d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf0\xb000000\xb00000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8727b16d337d7b81 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8727b16d337d7b81 new file mode 100644 index 00000000000..e8000f30120 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8727b16d337d7b81 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/874cc243c277174f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/874cc243c277174f new file mode 100644 index 00000000000..6b7d5041fbc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/874cc243c277174f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\xa1B00\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/877ef180e579da57 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/877ef180e579da57 new file mode 100644 index 00000000000..332254064ad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/877ef180e579da57 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/878129fd4da9f745 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/878129fd4da9f745 new file mode 100644 index 00000000000..72b4e442d63 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/878129fd4da9f745 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersionA0\xda0000DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87b260fa7bc68d57 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87b260fa7bc68d57 new file mode 100644 index 00000000000..1f8f8de87de --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87b260fa7bc68d57 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87ebcc367092a1ec b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87ebcc367092a1ec new file mode 100644 index 00000000000..9fa8de3ea14 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/87ebcc367092a1ec @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x88000000000\x88000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/882f292f2deaa2b0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/882f292f2deaa2b0 new file mode 100644 index 00000000000..dfa1f969604 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/882f292f2deaa2b0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xdb00000000\xdb00000000\xdb00000000\xdb00000000\xdb00000000\xdb00000000\xdb00000000\xdb00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8832d14c275e834b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8832d14c275e834b new file mode 100644 index 00000000000..b8d598bd6d0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8832d14c275e834b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x81\x81\x81\x81\x81\x81\x81\x810") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/886cb4275775e006 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/886cb4275775e006 new file mode 100644 index 00000000000..2c7bdca57d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/886cb4275775e006 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb1\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf900000\xf9000\xf9000\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88df34c5a6292eb0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88df34c5a6292eb0 new file mode 100644 index 00000000000..7710a7b331e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88df34c5a6292eb0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf970\xf9X1\xff\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf901\xf970\xf9X1\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88eed1bc8f18d8c8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88eed1bc8f18d8c8 new file mode 100644 index 00000000000..7254ea39dae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/88eed1bc8f18d8c8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/892d1d52040e905a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/892d1d52040e905a new file mode 100644 index 00000000000..265ad926387 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/892d1d52040e905a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersionAyTkindAx") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/894b3c2ae51997ed b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/894b3c2ae51997ed new file mode 100644 index 00000000000..b9f7a068cc8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/894b3c2ae51997ed @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x9f\x9f\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x9f\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\xff\xff\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8953ad462ded347d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8953ad462ded347d new file mode 100644 index 00000000000..b940b1fccec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8953ad462ded347d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xf60;\xe900000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895445f9d8ba238f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895445f9d8ba238f new file mode 100644 index 00000000000..8c6299e6ecf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895445f9d8ba238f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbf@0B000@0\xffB00\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00A10B000@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895b17f034672b53 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895b17f034672b53 new file mode 100644 index 00000000000..2b4e4b48f31 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/895b17f034672b53 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2Dkind0Dkind0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a418620040d4a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a418620040d4a new file mode 100644 index 00000000000..77d089fa034 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a418620040d4a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a6f2367714b5d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a6f2367714b5d new file mode 100644 index 00000000000..abf9881f750 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/897a6f2367714b5d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2C0000\xd900\xd900\xd900\xd900C0100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89bb8ef4d1d2eaae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89bb8ef4d1d2eaae new file mode 100644 index 00000000000..a8e2beee4d9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89bb8ef4d1d2eaae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f\x16\x16\x16\x16\x16\x16\x16\x16\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89c9f54c1b0664f4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89c9f54c1b0664f4 new file mode 100644 index 00000000000..d3c725693b9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89c9f54c1b0664f4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf7") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89f189397198ae8d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89f189397198ae8d new file mode 100644 index 00000000000..bf4e4ab3bee --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/89f189397198ae8d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf981A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a1b29c0cbe27e36 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a1b29c0cbe27e36 new file mode 100644 index 00000000000..a66adec59fa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a1b29c0cbe27e36 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x8400\xfa\xff\x8000\x8400\xfa\xff\x80000B00\x8400\xfa\xff\x8000\x8400\xfa\xff\x80000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a3077062d25a2c8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a3077062d25a2c8 new file mode 100644 index 00000000000..d60a62d47e8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a3077062d25a2c8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xf40\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a4b71f87b28c2e1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a4b71f87b28c2e1 new file mode 100644 index 00000000000..75fce4e8c13 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a4b71f87b28c2e1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2e00000\xa2e00000\xa2e00000\xf9|\x00@\xf9|\x00@\xa20\xa20\xf9|\x000\xf9|\x00@\xf9|\x00@\xf9|\x0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a52ea4c1044fca6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a52ea4c1044fca6 new file mode 100644 index 00000000000..c1b54e4ccc5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a52ea4c1044fca6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\x7f\xffB00\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\x7f\xffA080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a8e958b063d2bc2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a8e958b063d2bc2 new file mode 100644 index 00000000000..7b71bc14d81 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8a8e958b063d2bc2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfb\x00\x00\x00\x00\x00\x0100A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8aca0a8eb84d12d1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8aca0a8eb84d12d1 new file mode 100644 index 00000000000..1e8f9c44e83 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8aca0a8eb84d12d1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f00000000\xe9\xe90\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xea0\xe9\xe900000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8af882453f36a78b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8af882453f36a78b new file mode 100644 index 00000000000..fa0ee38d32d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8af882453f36a78b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\x84\x8400\xf9\x00\x000\xf9\x00\x00000\xf9\x00\x000\xf9\x00\x0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b01f63a428e64ef b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b01f63a428e64ef new file mode 100644 index 00000000000..054e4d34f0d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b01f63a428e64ef @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xe700") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b2c02175a0e153f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b2c02175a0e153f new file mode 100644 index 00000000000..8c1457c1e9a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b2c02175a0e153f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xa6000000000000000\xc30000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b33614bf6ba0adc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b33614bf6ba0adc new file mode 100644 index 00000000000..9c83658fd9e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b33614bf6ba0adc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfaaX20\xfaaX20\xfaa200\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b4c889c21e0943e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b4c889c21e0943e new file mode 100644 index 00000000000..0dac4f0bbaa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b4c889c21e0943e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b91818f7a7cdacd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b91818f7a7cdacd new file mode 100644 index 00000000000..8a61ca4c0bd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8b91818f7a7cdacd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd900\xd9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc108ed38fe5b09 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc108ed38fe5b09 new file mode 100644 index 00000000000..d8245d744f1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc108ed38fe5b09 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1;\xc10000000\xc1;\xc10000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc73454c55df588 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc73454c55df588 new file mode 100644 index 00000000000..6f09868f605 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8bc73454c55df588 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x85\xf4\xf4\xf4\xf40A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c252e088b8fb93f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c252e088b8fb93f new file mode 100644 index 00000000000..42dca044d38 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c252e088b8fb93f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xa300\xf6\xa3000000\xf6\xa300\xf6\xa300\xf6\xa300\xf6\xa3000000000000\xf6\xa30000\xf6\xa3000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c4aeaed2b857689 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c4aeaed2b857689 new file mode 100644 index 00000000000..ea54356fb2e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c4aeaed2b857689 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f\x9f\x9f0\xff\x9f\x9f\x9f0\xff\x9f0\xff\xff\xff\xff\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c653a9e368d8edb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c653a9e368d8edb new file mode 100644 index 00000000000..47a338a66fe --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8c653a9e368d8edb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0000000000000000000000000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ca2414fa0d61eb6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ca2414fa0d61eb6 new file mode 100644 index 00000000000..28c2320a4ae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ca2414fa0d61eb6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\r0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d2568e3a819714a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d2568e3a819714a new file mode 100644 index 00000000000..c266cc4936c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d2568e3a819714a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600102070\xc3A\x00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d27070d5d3b1b21 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d27070d5d3b1b21 new file mode 100644 index 00000000000..18f75337d13 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d27070d5d3b1b21 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ\x00\xea0000000000000000000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d41da55548ed5b6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d41da55548ed5b6 new file mode 100644 index 00000000000..ce65babc86c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d41da55548ed5b6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc4\xc4\xc4\xc4\xc4") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5811082ee0fbea b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5811082ee0fbea new file mode 100644 index 00000000000..ff21c398504 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5811082ee0fbea @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersionA0\xdb00000000DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5ce21f9d68ec8b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5ce21f9d68ec8b new file mode 100644 index 00000000000..6f9244be25b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d5ce21f9d68ec8b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd8\x01\xd800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d63013297af6f54 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d63013297af6f54 new file mode 100644 index 00000000000..826faa92228 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d63013297af6f54 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0'00000000\x9f0\x03\x03\x03\x03\x03\x03\x03\xe9\xe90\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe9\xe900000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d954be6abe79e4f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d954be6abe79e4f new file mode 100644 index 00000000000..c1bc13f0667 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8d954be6abe79e4f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa2\xf6\xa300\xf60\xf6\xa300\xf60\xf60\xf60\xf6000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8da667ccb8d1f867 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8da667ccb8d1f867 new file mode 100644 index 00000000000..b2ffe71fe77 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8da667ccb8d1f867 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3A000\xc3A0000000\xc3A0000000\xc3A000\xc3A000\xc3A000\xc3A000\xc3A0000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e0abb15a4b89d86 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e0abb15a4b89d86 new file mode 100644 index 00000000000..8fad24e6c79 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e0abb15a4b89d86 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc1\xfa00000A0\xc1\xfa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e1b0cbac3463159 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e1b0cbac3463159 new file mode 100644 index 00000000000..9aaa67a2313 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e1b0cbac3463159 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e20e38c912e5afe b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e20e38c912e5afe new file mode 100644 index 00000000000..47e3e2347ce --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e20e38c912e5afe @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("J00000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e5be088ace3c18f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e5be088ace3c18f new file mode 100644 index 00000000000..261a300daef --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e5be088ace3c18f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf7\xf700A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e78d1960380b33e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e78d1960380b33e new file mode 100644 index 00000000000..9a0b13804e3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e78d1960380b33e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa61020\xc1\xfbC0000000000\xc1\xfbC0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e83e51c0f18d702 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e83e51c0f18d702 new file mode 100644 index 00000000000..a2868bea537 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e83e51c0f18d702 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f````````````````````````````````\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e91a0dfd6a7f5c9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e91a0dfd6a7f5c9 new file mode 100644 index 00000000000..d028ce4959e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8e91a0dfd6a7f5c9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4000000\xc2J\x00\x00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ea63e10d378c049 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ea63e10d378c049 new file mode 100644 index 00000000000..56452df69db --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ea63e10d378c049 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfb\x00\x00\x00\x00\x00\x00\x00yA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8eb26b62435b5788 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8eb26b62435b5788 new file mode 100644 index 00000000000..2ac78996f9e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8eb26b62435b5788 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc5;\x8000000000\xc5;\x8000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ed4eab9011efc07 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ed4eab9011efc07 new file mode 100644 index 00000000000..9bdf641a05f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ed4eab9011efc07 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e`````000000e00000\x8e`````000000```0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ef71aa5bab13446 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ef71aa5bab13446 new file mode 100644 index 00000000000..20075de9b26 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8ef71aa5bab13446 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e00000800\x8b\xc9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8facc0024aaea908 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8facc0024aaea908 new file mode 100644 index 00000000000..ceee537a76d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8facc0024aaea908 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8fc1b83fa4f98753 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8fc1b83fa4f98753 new file mode 100644 index 00000000000..6f23aab015f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/8fc1b83fa4f98753 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ00%00)000>000000000\x00\x800000000\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c\x9c0\x9c0000010000000000000000000000\x9c000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9002ff01794b7e9f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9002ff01794b7e9f new file mode 100644 index 00000000000..261bba4430c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9002ff01794b7e9f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e000000A00A10@\xa6e000000A00A10@00000D00000@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d7163d39c087c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d7163d39c087c new file mode 100644 index 00000000000..229e30bf924 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d7163d39c087c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00\x8e000000\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d9e0c9950eeb2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d9e0c9950eeb2 new file mode 100644 index 00000000000..015033aeff7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900d9e0c9950eeb2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\x7f") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900e8779ba989db4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900e8779ba989db4 new file mode 100644 index 00000000000..897f2d91c06 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/900e8779ba989db4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa60000\x96000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90627bf1cef11c1a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90627bf1cef11c1a new file mode 100644 index 00000000000..81d420a37d0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90627bf1cef11c1a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\U000edc080\xa2e\U000edc0800e\U000edc2200e\U000edc2200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9064aeeb2fb5b513 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9064aeeb2fb5b513 new file mode 100644 index 00000000000..dfd13940db7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9064aeeb2fb5b513 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x820\x820\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90eb3c31a251fd0f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90eb3c31a251fd0f new file mode 100644 index 00000000000..3983264a633 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/90eb3c31a251fd0f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xaf\xf80\xf8\x17") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9111578eb82e8537 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9111578eb82e8537 new file mode 100644 index 00000000000..fffdd72bdc6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9111578eb82e8537 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf0000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/916fa63fb72a63a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/916fa63fb72a63a8 new file mode 100644 index 00000000000..d0a3671c9bd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/916fa63fb72a63a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb4000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91730a8c226143a7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91730a8c226143a7 new file mode 100644 index 00000000000..9a8309c7917 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91730a8c226143a7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7f") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/918065afce52a593 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/918065afce52a593 new file mode 100644 index 00000000000..e59a02ccdea --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/918065afce52a593 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xa600\xc20000000000000\xc30000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c25a9b8558d508 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c25a9b8558d508 new file mode 100644 index 00000000000..c44909342af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c25a9b8558d508 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xc0\xa1\xa1\xa1\xa10\xa1\xa1\xa1\xa1000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c80386e20311f0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c80386e20311f0 new file mode 100644 index 00000000000..1fb755919cf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/91c80386e20311f0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2A0\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xffC00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/927cc88826cbf642 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/927cc88826cbf642 new file mode 100644 index 00000000000..1d5f473edcc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/927cc88826cbf642 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0000000000000000\x9f000000000000000000000000000000000000000000\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/92f75f690317ace3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/92f75f690317ace3 new file mode 100644 index 00000000000..f3bf6d90fad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/92f75f690317ace3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/932c87094de84470 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/932c87094de84470 new file mode 100644 index 00000000000..00765f59df1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/932c87094de84470 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40010\xf50\xf50") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93accc70638e21d8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93accc70638e21d8 new file mode 100644 index 00000000000..69b84a16f03 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93accc70638e21d8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93de619e549ecfdb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93de619e549ecfdb new file mode 100644 index 00000000000..4da07681da1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/93de619e549ecfdb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa\xffa0a0\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9407bf32bfe275e8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9407bf32bfe275e8 new file mode 100644 index 00000000000..1f2ad16b2ba --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9407bf32bfe275e8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xda0000\xda0000\xda0000Z0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/943402037ef9f6ce b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/943402037ef9f6ce new file mode 100644 index 00000000000..c0d6406dcae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/943402037ef9f6ce @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9\x102A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9497829c83f3f80c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9497829c83f3f80c new file mode 100644 index 00000000000..fe28486348c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9497829c83f3f80c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xf40\xf400000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95018fbf56108782 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95018fbf56108782 new file mode 100644 index 00000000000..30f9db181cf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95018fbf56108782 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ00000A0021000000000000000000000000000000000000000000000000000000000000000000\x1f0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9501dfaf3a107867 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9501dfaf3a107867 new file mode 100644 index 00000000000..34548db1d1c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9501dfaf3a107867 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0\r\r00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9509988895e6a91c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9509988895e6a91c new file mode 100644 index 00000000000..2e8b78976b6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9509988895e6a91c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xc2@\x84\xc2@0\xc2J0000000000\x84\xc2@\x84\xc2@\x84\xc2@0\xc2J0000000000\x84\xc2@\x84\xc2@0\xc2@0\xc2@0\xc2@0\xc2@0\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951430e91bd86fe1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951430e91bd86fe1 new file mode 100644 index 00000000000..fd3cf4310eb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951430e91bd86fe1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa30000\xf600\xf6\xa30000\xf6\xa300\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951de4b4c2c1484b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951de4b4c2c1484b new file mode 100644 index 00000000000..aaae07fc8ec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/951de4b4c2c1484b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf9\x030") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95304c9e88b86c7e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95304c9e88b86c7e new file mode 100644 index 00000000000..b16a00381f4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95304c9e88b86c7e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb200\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x80\x1a000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9559e4e0f0b83cae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9559e4e0f0b83cae new file mode 100644 index 00000000000..48819e823f8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9559e4e0f0b83cae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95e94fff32a84340 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95e94fff32a84340 new file mode 100644 index 00000000000..bf45c5532cb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/95e94fff32a84340 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ00\xa300A0021000000000000\x000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9690cdb74c6d4260 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9690cdb74c6d4260 new file mode 100644 index 00000000000..9eb5d9983af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9690cdb74c6d4260 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x8500000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96aa77714f767a55 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96aa77714f767a55 new file mode 100644 index 00000000000..c564f141b1e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96aa77714f767a55 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8100\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96beecbc0797c5cd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96beecbc0797c5cd new file mode 100644 index 00000000000..fb3815806bf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96beecbc0797c5cd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\xe9\xad0000e\xe9\xad0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96d6bcdfce28539a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96d6bcdfce28539a new file mode 100644 index 00000000000..879010ee773 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96d6bcdfce28539a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96e2233445428ee1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96e2233445428ee1 new file mode 100644 index 00000000000..16804ee9fa4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96e2233445428ee1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f6f02cb9bcb915 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f6f02cb9bcb915 new file mode 100644 index 00000000000..80314aa8d64 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f6f02cb9bcb915 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xf90000900\xf9000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f7d7de339f50e5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f7d7de339f50e5 new file mode 100644 index 00000000000..b0e955c9488 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96f7d7de339f50e5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````````````````````````````````````````````````````````````\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96fca31a47531da2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96fca31a47531da2 new file mode 100644 index 00000000000..9c158333f8b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/96fca31a47531da2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa208") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9712b1084cc66fed b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9712b1084cc66fed new file mode 100644 index 00000000000..082079a462d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9712b1084cc66fed @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\x800\x800\x800\x800\x800\x800\x800\x800\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/97f46dc902a00d03 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/97f46dc902a00d03 new file mode 100644 index 00000000000..79b9e67ff3b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/97f46dc902a00d03 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x8400\xfa\xff\x8000\x8400\xfa\xff\x80000B000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98602791350052ce b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98602791350052ce new file mode 100644 index 00000000000..d9c8126f44f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98602791350052ce @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98685c8b2e42d5e6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98685c8b2e42d5e6 new file mode 100644 index 00000000000..b3152e90091 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98685c8b2e42d5e6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf970\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf9880\xff\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf970\xf9B$\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/987ae6c24172152a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/987ae6c24172152a new file mode 100644 index 00000000000..b9d0cb647a0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/987ae6c24172152a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98bf1c716214adf1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98bf1c716214adf1 new file mode 100644 index 00000000000..824292b5aba --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/98bf1c716214adf1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q\x00\x00\x00\x00A000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/992e5083b877dad7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/992e5083b877dad7 new file mode 100644 index 00000000000..d977a506d55 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/992e5083b877dad7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc3A\x000001020\xc3A\x00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9933b54c48c55164 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9933b54c48c55164 new file mode 100644 index 00000000000..072fefa80c8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9933b54c48c55164 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\x00\x100\xf9\x00\x1000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/997667d2790f81fd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/997667d2790f81fd new file mode 100644 index 00000000000..a3d506ee16f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/997667d2790f81fd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xe8071107Ac98B00XBXCAC\x15128B002A 27X00000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/998d79f16258ff5d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/998d79f16258ff5d new file mode 100644 index 00000000000..172d1331150 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/998d79f16258ff5d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X'000000000000000000\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/99a908b2ca797ebf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/99a908b2ca797ebf new file mode 100644 index 00000000000..3cb4146c9e0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/99a908b2ca797ebf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a139d7e593b2417 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a139d7e593b2417 new file mode 100644 index 00000000000..db6a922ea4f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a139d7e593b2417 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x81\x81\x81\x81\x81\x81\x81\x81\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a72843904a8dde3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a72843904a8dde3 new file mode 100644 index 00000000000..1c6f08482ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a72843904a8dde3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x880\xfa0000\xfa000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a7b38856796f7c2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a7b38856796f7c2 new file mode 100644 index 00000000000..456d3020647 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9a7b38856796f7c2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9ae31f36059bbb30 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9ae31f36059bbb30 new file mode 100644 index 00000000000..9e0bea9a645 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9ae31f36059bbb30 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xfaa0=0\xfa`G000\xfaa0=0\xfa`G00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b0e7fd08b5ec0b8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b0e7fd08b5ec0b8 new file mode 100644 index 00000000000..6f5b2cf5675 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b0e7fd08b5ec0b8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaA000\xfaA00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b6cb33cb07d167f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b6cb33cb07d167f new file mode 100644 index 00000000000..223011e5d0f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b6cb33cb07d167f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000_\xffD000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b926f5e672f3274 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b926f5e672f3274 new file mode 100644 index 00000000000..f36cd34579e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b926f5e672f3274 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J00000000\xb00\x9f\x9f@@@@@@@@@\xff@@@@@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b94ab4626969b93 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b94ab4626969b93 new file mode 100644 index 00000000000..53f83e8a103 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9b94ab4626969b93 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\u03a2e000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9baebf3a37e99756 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9baebf3a37e99756 new file mode 100644 index 00000000000..b4c032295da --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9baebf3a37e99756 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4@\xa0D0000\xa00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bbf569b91dee7f9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bbf569b91dee7f9 new file mode 100644 index 00000000000..1898db11e9f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bbf569b91dee7f9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc1A00\xc1A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bd47020a2df4837 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bd47020a2df4837 new file mode 100644 index 00000000000..7fe1f76857a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9bd47020a2df4837 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfb\x00\x00\x00\x000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9c9f06af0c8ad7e0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9c9f06af0c8ad7e0 new file mode 100644 index 00000000000..29b665b6295 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9c9f06af0c8ad7e0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa7JapiVersion0JapiVersion00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9cc334dace5c05e6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9cc334dace5c05e6 new file mode 100644 index 00000000000..0b86be944c4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9cc334dace5c05e6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc2@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9d490e4b159d740a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9d490e4b159d740a new file mode 100644 index 00000000000..1db49e00965 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9d490e4b159d740a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xfa00\xfa0\xfa000\xfa0\xfa00\xfa0\xe100\xfa0\xfa00\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9dbeba4a59dc0732 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9dbeba4a59dc0732 new file mode 100644 index 00000000000..486f9ccb42a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9dbeba4a59dc0732 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2080B00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e04fbd9ef09274b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e04fbd9ef09274b new file mode 100644 index 00000000000..18305e83b34 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e04fbd9ef09274b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x8400\xfa\xff\x80\x00\x000B00\x8400\xfa\xff\x80\x00\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e403446f6483026 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e403446f6483026 new file mode 100644 index 00000000000..b6157078838 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e403446f6483026 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8ca562df5553ee b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8ca562df5553ee new file mode 100644 index 00000000000..fa63cb973a1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8ca562df5553ee @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2@\xc2@e000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8df639abdf5b9c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8df639abdf5b9c new file mode 100644 index 00000000000..7b2e73f48f0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9e8df639abdf5b9c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eea2291fc0db312 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eea2291fc0db312 new file mode 100644 index 00000000000..58d6c662166 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eea2291fc0db312 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f````````````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eebf75230cff9cb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eebf75230cff9cb new file mode 100644 index 00000000000..c8c8fcea1a3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9eebf75230cff9cb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x7f\xffD000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f08285ec88c9fb8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f08285ec88c9fb8 new file mode 100644 index 00000000000..483cfda42cb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f08285ec88c9fb8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf9\x00\x01") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f10ca5c8ce8e8cf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f10ca5c8ce8e8cf new file mode 100644 index 00000000000..f560323b680 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f10ca5c8ce8e8cf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ000000000000000000000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f3e3c17d5ae678f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f3e3c17d5ae678f new file mode 100644 index 00000000000..3148e86a4f6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9f3e3c17d5ae678f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2C0000\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900C0\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fc4053683ab3818 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fc4053683ab3818 new file mode 100644 index 00000000000..f07b9b1dcac --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fc4053683ab3818 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbfb0\xec0a\xee0a\xec0a\xec0a\x990b0\xec0a\xee0a\xec0a\xec0a\x990a\xec0a\xec0a\xec0a\xec0a\xec0a\xec0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fcebf950d51fc66 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fcebf950d51fc66 new file mode 100644 index 00000000000..904038b5633 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/9fcebf950d51fc66 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00d838d374e42e4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00d838d374e42e4 new file mode 100644 index 00000000000..112a8e4f262 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00d838d374e42e4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\xfa0000DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00f3a8e67bec792 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00f3a8e67bec792 new file mode 100644 index 00000000000..cde9863912e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a00f3a8e67bec792 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x890\x890000\xc1\xf9000\xc1\xf900\xc1\xf9000\xc1\xf9000\xc1\xf9000\xc1\xf900\xc1\xf9000\xc1\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0620bf0bff3ece1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0620bf0bff3ece1 new file mode 100644 index 00000000000..5026675c2db --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0620bf0bff3ece1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2800\xd9\xd9\xf7\xd9\xd9\xf700") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0f953623d768c69 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0f953623d768c69 new file mode 100644 index 00000000000..7a7610e6e0a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a0f953623d768c69 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xb4\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a122ebe2e4c8c391 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a122ebe2e4c8c391 new file mode 100644 index 00000000000..b6bda1f2781 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a122ebe2e4c8c391 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\x9f\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xff\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a12a9f1a0b0a2e01 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a12a9f1a0b0a2e01 new file mode 100644 index 00000000000..ba8f5530d4e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a12a9f1a0b0a2e01 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3K00000000000\xc3K00000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1656a466e6b2add b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1656a466e6b2add new file mode 100644 index 00000000000..5b357a2b877 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1656a466e6b2add @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x87$\xf9\x14100A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17751b04fefe869 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17751b04fefe869 new file mode 100644 index 00000000000..8734e3e8f55 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17751b04fefe869 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xafA0A0A0A0A0A0A0A0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17ada11b5ac7ce4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17ada11b5ac7ce4 new file mode 100644 index 00000000000..76a402e8f3a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a17ada11b5ac7ce4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X'00000\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a19d2156b5ad480c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a19d2156b5ad480c new file mode 100644 index 00000000000..64ae95dc350 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a19d2156b5ad480c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\x7f0\xf9\x7f00\xf9\x7f0\xf9\x7f0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1bb0f7d041fb7a5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1bb0f7d041fb7a5 new file mode 100644 index 00000000000..9a6a9bdf88e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1bb0f7d041fb7a5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xad000000000000000000000\xad\xad000000000000000000000000000000000\xad\xad00000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d18e8d8b37abdc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d18e8d8b37abdc new file mode 100644 index 00000000000..8e4cb24607f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d18e8d8b37abdc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc0h00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d76b3725c64ef1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d76b3725c64ef1 new file mode 100644 index 00000000000..1d56d57556e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a1d76b3725c64ef1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a222de2d445d0bf9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a222de2d445d0bf9 new file mode 100644 index 00000000000..551ece66023 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a222de2d445d0bf9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\xa100\x82\xa100\x82\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2294c73fbac76d4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2294c73fbac76d4 new file mode 100644 index 00000000000..b686adbf1db --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2294c73fbac76d4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\xfb00000000DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a23d02d683c00837 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a23d02d683c00837 new file mode 100644 index 00000000000..c559c91737d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a23d02d683c00837 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte(":08") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a24a16dcdf3fd2d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a24a16dcdf3fd2d3 new file mode 100644 index 00000000000..7d9085b4d14 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a24a16dcdf3fd2d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x880\xfa0000\xfa000000\xfa0000\xfa00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2775816e8d07026 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2775816e8d07026 new file mode 100644 index 00000000000..c63edea701b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a2775816e8d07026 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4000\xd80\xd800\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd800\xd80\xd80000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a286bea41bff43d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a286bea41bff43d3 new file mode 100644 index 00000000000..c662843582c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a286bea41bff43d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xd5\xd5\xd5\xd5b\xc3000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a3bd8e4024e86aae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a3bd8e4024e86aae new file mode 100644 index 00000000000..4b992bc87a9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a3bd8e4024e86aae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f00\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a411f5b6dcdfc675 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a411f5b6dcdfc675 new file mode 100644 index 00000000000..f981e1161c1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a411f5b6dcdfc675 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersiond//0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4278c9f4eee8a51 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4278c9f4eee8a51 new file mode 100644 index 00000000000..27e144e8430 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4278c9f4eee8a51 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa91020\"0#00070 0!000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4f38b0e5b633cae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4f38b0e5b633cae new file mode 100644 index 00000000000..a471063d846 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a4f38b0e5b633cae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6000000\xcc000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a518d0e7a449c8c5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a518d0e7a449c8c5 new file mode 100644 index 00000000000..c1b325559cb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a518d0e7a449c8c5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc1000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a570c41da6adf3b8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a570c41da6adf3b8 new file mode 100644 index 00000000000..5e1c06604cf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a570c41da6adf3b8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xc2J0000000000\x84\xc2A0\xc2J0000000000\x840\x84\xc2C00080\x84800800000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5821327c877103c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5821327c877103c new file mode 100644 index 00000000000..8878fc7392e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5821327c877103c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xc1\xf900\xc1\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5b0615a3564645c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5b0615a3564645c new file mode 100644 index 00000000000..82361a86760 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a5b0615a3564645c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa610207000\xc1\xfbC0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a65c4b3987955cd4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a65c4b3987955cd4 new file mode 100644 index 00000000000..dbb8d4d3095 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a65c4b3987955cd4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9B\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6ad72bd3d35a6e9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6ad72bd3d35a6e9 new file mode 100644 index 00000000000..c890018237d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6ad72bd3d35a6e9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_@@@@@@@@\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6d7a274e1c79b9b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6d7a274e1c79b9b new file mode 100644 index 00000000000..09b6c74fbd2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a6d7a274e1c79b9b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA000DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a74d2dd675e5ab9a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a74d2dd675e5ab9a new file mode 100644 index 00000000000..0fcc93150ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a74d2dd675e5ab9a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc300\x8e00\xc300\xc200\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30\xc300\xc300\x8e\xc300\xc300\xc2000\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc3000000000\xc3000\xc30\xc300\xc20000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a75dad34cb8695e6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a75dad34cb8695e6 new file mode 100644 index 00000000000..e972550d484 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a75dad34cb8695e6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f@@@@@@@@@@@@@@@@\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a77aad158a170fd9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a77aad158a170fd9 new file mode 100644 index 00000000000..25b281a37ee --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a77aad158a170fd9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a789de25e9a49696 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a789de25e9a49696 new file mode 100644 index 00000000000..6b5bc5f9c4a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a789de25e9a49696 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfabX\xfa0\xfabY00\xfb00000000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7aa6a969ee0ef15 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7aa6a969ee0ef15 new file mode 100644 index 00000000000..cf93d1d76ad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7aa6a969ee0ef15 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f09000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7b69f17e4f7e3b4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7b69f17e4f7e3b4 new file mode 100644 index 00000000000..41ea2139332 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7b69f17e4f7e3b4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc8\xc80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7bb1f0d34931e4e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7bb1f0d34931e4e new file mode 100644 index 00000000000..a05d082d0f2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7bb1f0d34931e4e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa5\xe20;\xf600000000;\xdb00000000;\xf600000000;\xdb00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7e23f604e0cec13 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7e23f604e0cec13 new file mode 100644 index 00000000000..ca5ea26f853 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7e23f604e0cec13 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xce\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xd7\xd7\xce\xce\xce\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7f059f27127b515 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7f059f27127b515 new file mode 100644 index 00000000000..b2c1c072815 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a7f059f27127b515 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x84\x84\xf9\x7f0\xf9\x7f0\xf9\x7f0\x84\xf9\x7f0\xf9\x7f0\xf9\x7f0\xf9\x7f0\xf9\x7f0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a81807d6d61776b8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a81807d6d61776b8 new file mode 100644 index 00000000000..a091e362cca --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a81807d6d61776b8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc3A00\xc3A0000\xc3A00\xc3A0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a82bc2c5b88fb925 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a82bc2c5b88fb925 new file mode 100644 index 00000000000..c3d08dc4548 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a82bc2c5b88fb925 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7f\x7f") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a855bafe7e870574 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a855bafe7e870574 new file mode 100644 index 00000000000..aec220fc654 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a855bafe7e870574 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa80d0000d0000d0000d10000d0001010d0000d00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a8b8cfa3b1748790 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a8b8cfa3b1748790 new file mode 100644 index 00000000000..19e5e6b7fe1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a8b8cfa3b1748790 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xfaa0=0\xfaay000\xfax0=0\xfaay00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a96288019e234164 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a96288019e234164 new file mode 100644 index 00000000000..80247c629df --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/a96288019e234164 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600000000\xc3A0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aa5b15079d3e4eee b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aa5b15079d3e4eee new file mode 100644 index 00000000000..00234a6da00 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aa5b15079d3e4eee @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aad6210dcbbea4bb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aad6210dcbbea4bb new file mode 100644 index 00000000000..78b64945a15 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aad6210dcbbea4bb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0209\xb9\xbf\xbeA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ab66ee0b44bf65dc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ab66ee0b44bf65dc new file mode 100644 index 00000000000..5040edaec13 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ab66ee0b44bf65dc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00\x8e0000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf600A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abec1dc02a761db0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abec1dc02a761db0 new file mode 100644 index 00000000000..292fa9ecd52 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abec1dc02a761db0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abfa18bff2a6ffce b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abfa18bff2a6ffce new file mode 100644 index 00000000000..7dc0c4da223 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/abfa18bff2a6ffce @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\xd60A080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac38809eba7845d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac38809eba7845d3 new file mode 100644 index 00000000000..d4611785a3a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac38809eba7845d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xc6\xc6\xc600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac460043b4bef24b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac460043b4bef24b new file mode 100644 index 00000000000..c0d451f29fb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac460043b4bef24b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfa2100\xfa1070\x84\xfa21000\xfa2100\xfa1070\x84\xfa2100\xfaA0000\x84\xfa2100000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac6b13bea9827302 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac6b13bea9827302 new file mode 100644 index 00000000000..ee697d94320 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac6b13bea9827302 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("l0000000݀000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac911464b58abce9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac911464b58abce9 new file mode 100644 index 00000000000..29d2bde46f6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ac911464b58abce9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd90000\x8f00000\xd9000\xd9000\xd8000\xd90000\xd90000\xd9000\xd90000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aca96c0783a88ef0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aca96c0783a88ef0 new file mode 100644 index 00000000000..d30120583ae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aca96c0783a88ef0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0000000000000000\x9f0000000000000000000000000000000000000000000000000\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acbc971caae0c0ec b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acbc971caae0c0ec new file mode 100644 index 00000000000..db69f209d27 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acbc971caae0c0ec @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xa300\xf6\xf6\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xa300\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acccd2401d856938 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acccd2401d856938 new file mode 100644 index 00000000000..44330b7e0f5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acccd2401d856938 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q11210001000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acf9f36bb222b8bd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acf9f36bb222b8bd new file mode 100644 index 00000000000..9e49bb61138 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/acf9f36bb222b8bd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2V00\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad2b81b6116cef08 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad2b81b6116cef08 new file mode 100644 index 00000000000..f9373d541ca --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad2b81b6116cef08 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q\x000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad3c2399cbc78e62 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad3c2399cbc78e62 new file mode 100644 index 00000000000..877bcd4db36 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad3c2399cbc78e62 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xc2@\x84\xc2@0\xc2@0\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad7f4f4df702eafd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad7f4f4df702eafd new file mode 100644 index 00000000000..cc757692e74 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad7f4f4df702eafd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q112100910\xff0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad9b2b62fb74f120 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad9b2b62fb74f120 new file mode 100644 index 00000000000..20e5b2d414a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ad9b2b62fb74f120 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000000000080Dkindc\xc200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ada7a5d1b60ebee0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ada7a5d1b60ebee0 new file mode 100644 index 00000000000..c89dcb30016 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ada7a5d1b60ebee0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9X0\xf9X0\x9f\xf9X0\xf9x0\xf9X0\xff\xf900\x9f\xf9X0\xf9X0\x9f\xf9X0\xf9x0\xf9X0\xff\xf900\xf9X0\xf9X0\xf9X0\xf9X1\xf9X0\xff\xf9X0\xf9X0\xf9X0\xf9X1\xf9X0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adb71cf50040e325 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adb71cf50040e325 new file mode 100644 index 00000000000..664e0cdbf11 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adb71cf50040e325 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adfed662a4afc794 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adfed662a4afc794 new file mode 100644 index 00000000000..3fdca4fdac6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/adfed662a4afc794 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaa100\xfaaX20\xfaaX20\xfaaX20\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae17406d87dba636 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae17406d87dba636 new file mode 100644 index 00000000000..f5026b1db1d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae17406d87dba636 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa1\xf6\xa200\xf6\xa200\xf6\xa3\xf6\xa1\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa1\xf6\xa20000\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa2000000\xf6\xa2\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa1\xf6\xa20000\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa200000000\xf6\xa1\xf6\xa200000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae1b95a112a69f6b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae1b95a112a69f6b new file mode 100644 index 00000000000..d3d082963b3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae1b95a112a69f6b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2XQ029700000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae4c72e6f3b65965 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae4c72e6f3b65965 new file mode 100644 index 00000000000..49d7750edf7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae4c72e6f3b65965 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf901\xf900\xf900A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae9424b947172ebe b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae9424b947172ebe new file mode 100644 index 00000000000..053c70593b0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ae9424b947172ebe @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\x0e1A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aea8c6730621e8a4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aea8c6730621e8a4 new file mode 100644 index 00000000000..abe37bb772f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aea8c6730621e8a4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e000000A10A00@000@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aeb08373369c7f43 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aeb08373369c7f43 new file mode 100644 index 00000000000..22ada5cafa7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aeb08373369c7f43 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3C000\xc3G0000000\xc3C000\xc3C000\xc3G0000000\xc3C000\xc3C000\xc3C000\x9f\xc3C000\xc3G0000000\xc3C000\xc3C000\xc3G0000000\xc3C000\xc3C000\xc3C000\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aed0cb73c5ddb9b0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aed0cb73c5ddb9b0 new file mode 100644 index 00000000000..6ebe3d89509 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aed0cb73c5ddb9b0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\xa2e00000\x84\x8400\xf9\x7f0\xf9\x7f00\xf9\x7f0\xf9\x7f0A000\xf9\x7f0\xf9\x7f00\xf9\x7f0\xf9\x7f0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aee8100d6de5d992 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aee8100d6de5d992 new file mode 100644 index 00000000000..51dc53dbea2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/aee8100d6de5d992 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af025400b3fa6e1e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af025400b3fa6e1e new file mode 100644 index 00000000000..c1a9143cd7f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af025400b3fa6e1e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0``````a0``````a0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af18844113efe7b7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af18844113efe7b7 new file mode 100644 index 00000000000..1947360ad00 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af18844113efe7b7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f00000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af2a0a3103c89f9b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af2a0a3103c89f9b new file mode 100644 index 00000000000..97d6feb20e4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af2a0a3103c89f9b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q\x00\x00\x00\x000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af6d9e7170e1d13d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af6d9e7170e1d13d new file mode 100644 index 00000000000..f53da1944a7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af6d9e7170e1d13d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\x9f\xff\x9f\xff\xff\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af9e46916af1506c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af9e46916af1506c new file mode 100644 index 00000000000..f87b79b5dac --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/af9e46916af1506c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbX0x00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afab3a31b580a9e2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afab3a31b580a9e2 new file mode 100644 index 00000000000..9986b44fc57 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afab3a31b580a9e2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x8400\xfa\xff\x80\x00\x000B00\x8400\xfa\xff\x80\x00\x00\xa2J0000000000\x8400\xfa\xff\x80\x00\x000B00\x8400\xfa\xff\x80\x00\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afea89c4ff9cac8c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afea89c4ff9cac8c new file mode 100644 index 00000000000..29ee7d09d05 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/afea89c4ff9cac8c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b04c74fbf4ad19cc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b04c74fbf4ad19cc new file mode 100644 index 00000000000..f515bd0dadf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b04c74fbf4ad19cc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0732cbca9bd2f56 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0732cbca9bd2f56 new file mode 100644 index 00000000000..f4306e6ee6a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0732cbca9bd2f56 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xfaaX20\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a01dc4cc72d1ed b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a01dc4cc72d1ed new file mode 100644 index 00000000000..172d5ad3165 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a01dc4cc72d1ed @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaZ\xa9000\xfaZ\xa900\xfaZ\xf700A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a2e0d1a132a7be b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a2e0d1a132a7be new file mode 100644 index 00000000000..d7f86379a56 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0a2e0d1a132a7be @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xc6\xc6\xc600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0b0dcc02128bfea b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0b0dcc02128bfea new file mode 100644 index 00000000000..7a09c9aa49d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0b0dcc02128bfea @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x9f\xf900\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0c292e1c902fee7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0c292e1c902fee7 new file mode 100644 index 00000000000..dfa5abce238 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b0c292e1c902fee7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b107c4c5bddf2c28 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b107c4c5bddf2c28 new file mode 100644 index 00000000000..2153c899a8f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b107c4c5bddf2c28 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd9\xd9\xf700") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b18d6b698bed547e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b18d6b698bed547e new file mode 100644 index 00000000000..233b9f3452e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b18d6b698bed547e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf0\xf000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b1de9de010211d56 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b1de9de010211d56 new file mode 100644 index 00000000000..998f623b8af --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b1de9de010211d56 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\x82\x80\x820000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b217ca44dd0d43a4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b217ca44dd0d43a4 new file mode 100644 index 00000000000..44df6e9f1cc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b217ca44dd0d43a4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xf90\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b22d9774cc448fdb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b22d9774cc448fdb new file mode 100644 index 00000000000..95649028148 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b22d9774cc448fdb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b246cc90c1223f5e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b246cc90c1223f5e new file mode 100644 index 00000000000..357127afe96 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b246cc90c1223f5e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81e0000080800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2520315a05aad0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2520315a05aad0e new file mode 100644 index 00000000000..22818a2dbf5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2520315a05aad0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b276145ed0f6626b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b276145ed0f6626b new file mode 100644 index 00000000000..b959fc22e8f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b276145ed0f6626b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbX0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b27851cfc14abf44 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b27851cfc14abf44 new file mode 100644 index 00000000000..f00afbc0795 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b27851cfc14abf44 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3X\x1a\x100000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2fbc68dd3165bf1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2fbc68dd3165bf1 new file mode 100644 index 00000000000..9246309d0ec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b2fbc68dd3165bf1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4000000\x800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3295345877ff28d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3295345877ff28d new file mode 100644 index 00000000000..fea50a28fc5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3295345877ff28d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00000000000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b346f041b69c405c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b346f041b69c405c new file mode 100644 index 00000000000..9110d1f7850 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b346f041b69c405c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XC0000000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3881d58effe5f5b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3881d58effe5f5b new file mode 100644 index 00000000000..7f1dc95e1e2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3881d58effe5f5b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x820\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3d316f6b358606e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3d316f6b358606e new file mode 100644 index 00000000000..67cce1a606e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3d316f6b358606e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J\t0\t00000000@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3e70489d24e1e97 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3e70489d24e1e97 new file mode 100644 index 00000000000..1f5915d28eb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b3e70489d24e1e97 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84B\x0000E00000X.0000000000000000000000000000000000000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b42576f6a0d56d55 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b42576f6a0d56d55 new file mode 100644 index 00000000000..b5bad58852c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b42576f6a0d56d55 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\xf90 \xf90 0\xf90 \xf90 00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b436f2f7b0101c0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b436f2f7b0101c0e new file mode 100644 index 00000000000..9df533fc479 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b436f2f7b0101c0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x9f\x80\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b439156d6ad57b34 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b439156d6ad57b34 new file mode 100644 index 00000000000..c0690baab75 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b439156d6ad57b34 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7fk000000000\xcd0o000000000000000```````````````````````````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b44eafa1da812573 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b44eafa1da812573 new file mode 100644 index 00000000000..f139925824f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b44eafa1da812573 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\x81\x8100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b45849ad9dd28918 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b45849ad9dd28918 new file mode 100644 index 00000000000..b7ca04b3b81 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b45849ad9dd28918 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf60\xf600\xf6\xa300\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4a314033e7b0159 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4a314033e7b0159 new file mode 100644 index 00000000000..d2c109f92d6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4a314033e7b0159 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4d70d40d63be9f1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4d70d40d63be9f1 new file mode 100644 index 00000000000..eb053c15ae0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4d70d40d63be9f1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4f84a20be18ac98 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4f84a20be18ac98 new file mode 100644 index 00000000000..27e6dec7e22 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4f84a20be18ac98 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xbf\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe60\xe40\xe40\xe40\xe40\xe70\xe70\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4ff16edf5b2922d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4ff16edf5b2922d new file mode 100644 index 00000000000..bf8895bc117 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b4ff16edf5b2922d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.0000''''''''''''''''00000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b52e1ea4aba5592d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b52e1ea4aba5592d new file mode 100644 index 00000000000..c3dc8f583e6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b52e1ea4aba5592d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J''''''''000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b54b7cc3e97043f8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b54b7cc3e97043f8 new file mode 100644 index 00000000000..ca58350ffab --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b54b7cc3e97043f8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa200\xf6\xa3\xf6\xa1\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa1\xf600000\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa1\xf6\xa200\xf6\xa1\xf60\xf6\xa2\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa1\xf60\xf6\xa2\xf6\xa1\xf6\xa1\xf6\xa1\xf6\xa200\xf6\xa200\xf6\xa1\xf6\xa200\xf6000\xf6\xa1\xf600000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b56d78c25315b1e3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b56d78c25315b1e3 new file mode 100644 index 00000000000..c3b5866fb2a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b56d78c25315b1e3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf5\xf5\xf5\xf5\xf5\x9f\xf5\x9f\xf5\xf5\xf5\xf5\xf5\x9f\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\xf5\xf5\xf5\xf5\x9f\xf5\x9f\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\x9f\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xff\xf5\xf5\xf5\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b590a871a517c1fe b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b590a871a517c1fe new file mode 100644 index 00000000000..321d536e98e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b590a871a517c1fe @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0`````````````````a0```````a0`````") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5a8b2df80440e54 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5a8b2df80440e54 new file mode 100644 index 00000000000..52c954f241f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5a8b2df80440e54 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xfb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5d8be61df2e6c1a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5d8be61df2e6c1a new file mode 100644 index 00000000000..f5f061add37 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5d8be61df2e6c1a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200A0\xcb\xc0d0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5e751484160d828 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5e751484160d828 new file mode 100644 index 00000000000..e30970fc378 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b5e751484160d828 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200A0\xcb\xcb\xc1d0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b62491f59d4ce799 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b62491f59d4ce799 new file mode 100644 index 00000000000..7ecee917259 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b62491f59d4ce799 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x840900\xc1\x010000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b64be398b0a10fed b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b64be398b0a10fed new file mode 100644 index 00000000000..f97126421dd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b64be398b0a10fed @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2e00000\xa2J00000000000J00000000010B00\xa1A00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b6fe7e111a31855d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b6fe7e111a31855d new file mode 100644 index 00000000000..c7721e6526b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b6fe7e111a31855d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xc3H00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b725adaed70286ba b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b725adaed70286ba new file mode 100644 index 00000000000..20cb50550fa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b725adaed70286ba @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\x9f\xff\x9f\x9f\xff\x9f\xff\xff\x9f\x9f\xff\x9f\x9f\x9f\x9f\xff\x9f\x9f\x9f\xff\x9f\xff\xff\xff\x9f\xff\xff\x9f\xff\xff\x9f\x9f\xff\x9f\x9f\xff\xff\x9f\xff\xff\xff\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7328c69e0d0be66 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7328c69e0d0be66 new file mode 100644 index 00000000000..1dd9dfcdb29 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7328c69e0d0be66 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9X0\xf9X0\x9f\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xff\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xf9X0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b79d5ca815095e42 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b79d5ca815095e42 new file mode 100644 index 00000000000..d7f08c15d7f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b79d5ca815095e42 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x870\xf90100A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7b5c6cd9d43bb91 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7b5c6cd9d43bb91 new file mode 100644 index 00000000000..2672cab01f1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7b5c6cd9d43bb91 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e00000e00000A0DA0D000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7f4645fe6328097 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7f4645fe6328097 new file mode 100644 index 00000000000..d98be4fad92 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b7f4645fe6328097 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xa300\xf6\xa300\xf6\xf6\xf6\xf6\xf6\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b801b09d0dfaa5f2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b801b09d0dfaa5f2 new file mode 100644 index 00000000000..fb1f5614879 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b801b09d0dfaa5f2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8898660bbba98a7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8898660bbba98a7 new file mode 100644 index 00000000000..d2f049ad3df --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8898660bbba98a7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8c3845783a76ec9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8c3845783a76ec9 new file mode 100644 index 00000000000..5ad8148185e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b8c3845783a76ec9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfb\x00\x00\x00\x00\x00\x00\x00yA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b93f364ad6cfb8c1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b93f364ad6cfb8c1 new file mode 100644 index 00000000000..7ac632c1a0b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b93f364ad6cfb8c1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0009220A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94308e7a707b006 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94308e7a707b006 new file mode 100644 index 00000000000..5bcfb06e9e1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94308e7a707b006 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xda0000\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xd2\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xda000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94acd1875b27423 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94acd1875b27423 new file mode 100644 index 00000000000..f8a90e7066a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b94acd1875b27423 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc2@0\xc2@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b98ed8f63ce4b292 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b98ed8f63ce4b292 new file mode 100644 index 00000000000..77540aa05fe --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b98ed8f63ce4b292 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xf9000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b16509f80bdbf7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b16509f80bdbf7 new file mode 100644 index 00000000000..97f5792aa9f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b16509f80bdbf7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600000000\xc1\xfb00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b6ac4e85c72377 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b6ac4e85c72377 new file mode 100644 index 00000000000..dc9693a2e45 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/b9b6ac4e85c72377 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xce\xd1\xd1\xc6\xc6\xc100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba03af0e9526277a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba03af0e9526277a new file mode 100644 index 00000000000..4b445ab0fd2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba03af0e9526277a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xbf\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba3ae415959db5f5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba3ae415959db5f5 new file mode 100644 index 00000000000..8d26715d417 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba3ae415959db5f5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa4\xc2@0\xc2@0\xc2@0\xc2@000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba44de5149224ef2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba44de5149224ef2 new file mode 100644 index 00000000000..c89ac0fb793 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba44de5149224ef2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba4da497fc7f7dd6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba4da497fc7f7dd6 new file mode 100644 index 00000000000..028e9912b00 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba4da497fc7f7dd6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900C000\xd9000\xd900\xd900\xd900\xd900\xd900\xd90000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba5b51ee7213be7b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba5b51ee7213be7b new file mode 100644 index 00000000000..136e4cc1549 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ba5b51ee7213be7b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0000000000000000\x9f000000000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf60000000000000000\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/badd1a4022848b57 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/badd1a4022848b57 new file mode 100644 index 00000000000..8515acac4da --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/badd1a4022848b57 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E魰000@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb31178e587047ec b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb31178e587047ec new file mode 100644 index 00000000000..9242a9e2a17 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb31178e587047ec @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00000\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8e00000\x8e00000\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8e00000\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe70A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb7d8b7ded809867 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb7d8b7ded809867 new file mode 100644 index 00000000000..b45b84fa77a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb7d8b7ded809867 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc6\xc60000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb82ecfb8282442a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb82ecfb8282442a new file mode 100644 index 00000000000..5605a5f3d92 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bb82ecfb8282442a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bbc76a61b04c2a3b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bbc76a61b04c2a3b new file mode 100644 index 00000000000..e064da675e6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bbc76a61b04c2a3b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x84\x8400\xfa\x7f\x80\x00\x00\x84\x8400\xfa\x7f\x80\x00\x0000\xfa\x7f\x80\x00\x0000\xfa\x7f\x80\x00\x000B000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc1066f31a5fb3f3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc1066f31a5fb3f3 new file mode 100644 index 00000000000..430102db3d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc1066f31a5fb3f3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf@\xbf\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc532c780afe5de6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc532c780afe5de6 new file mode 100644 index 00000000000..c7c0ae7b33a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc532c780afe5de6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfbC\xff0C0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc7163ee81864233 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc7163ee81864233 new file mode 100644 index 00000000000..8f62b34b6e9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc7163ee81864233 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd9\xd9\xf7\xd9\xd9\xf7\x84\xd9\xd9\xf7\xd9\xd9\xf7\x8400\xd9\xd9\xf7\xd9\xd9\xf70000\xd9\xd9\xf7\xd9\xd9\xf7\x84\xd9\xd9\xf7\xd9\xd9\xf7\x8400\xd9\xd9\xf7\xd9\xd9\xf7000\xd9\xd9\xf7\xd9\xd9\xf7\xd9\xd9\xf7\xd9\xd9\xf7000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc8b3b87167e2f7d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc8b3b87167e2f7d new file mode 100644 index 00000000000..b8ac8610b1e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc8b3b87167e2f7d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2D0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc99fd8d1a515552 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc99fd8d1a515552 new file mode 100644 index 00000000000..6683aabbbed --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bc99fd8d1a515552 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000\x17000000D00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcc4dea23c7c5ee4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcc4dea23c7c5ee4 new file mode 100644 index 00000000000..9ee3edce9b2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcc4dea23c7c5ee4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\xfc\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcd2495f5f79f77a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcd2495f5f79f77a new file mode 100644 index 00000000000..568f46207c2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcd2495f5f79f77a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000000\x18\x18\x18\x18\xf9\x0e7A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcfab1f756d2e24a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcfab1f756d2e24a new file mode 100644 index 00000000000..2a181977856 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bcfab1f756d2e24a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa2\xf6\xa1\xf6\xa2\xf60\xf6\xa30000000000000\xa3\xf6\xa2\xf6\xa1\xf6\xa2\xf60\xf6\xa30000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd27d8cda8fa990c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd27d8cda8fa990c new file mode 100644 index 00000000000..e4c6887ffdf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd27d8cda8fa990c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd47302a402fdfab b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd47302a402fdfab new file mode 100644 index 00000000000..a47624fed54 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd47302a402fdfab @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa5JapiVersion0JapiVersion0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd7bb32b4fc7ce79 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd7bb32b4fc7ce79 new file mode 100644 index 00000000000..f63a9387b23 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd7bb32b4fc7ce79 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2e00000\xa2e00000\xa2e00000\xf9|\x00@\xf9|\x00@\xf9|\x00@\xf9|\x00@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd949afbd20563a9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd949afbd20563a9 new file mode 100644 index 00000000000..7a18d790d57 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bd949afbd20563a9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x8400\xfa\x7f\x80\x00\x000B000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdafbe18d202e537 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdafbe18d202e537 new file mode 100644 index 00000000000..0978af80fa1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdafbe18d202e537 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000000000080D0000a0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdbb5a72c9d3e4e1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdbb5a72c9d3e4e1 new file mode 100644 index 00000000000..ace80ddfe67 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdbb5a72c9d3e4e1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd7\xd70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdd0545da69deb61 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdd0545da69deb61 new file mode 100644 index 00000000000..6f852f43021 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bdd0545da69deb61 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00A10B000B010B020\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be1312d2a236dbd8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be1312d2a236dbd8 new file mode 100644 index 00000000000..6270ef17c79 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be1312d2a236dbd8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9fb0\xeca\xec0a\xec0a\xec0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be213d03ebd516c4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be213d03ebd516c4 new file mode 100644 index 00000000000..fd4aabd9aa6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be213d03ebd516c4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000X.000000000000000000000000000000\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1f\x1fA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be443cfe05beb71b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be443cfe05beb71b new file mode 100644 index 00000000000..7867bf6d98f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be443cfe05beb71b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be49fd648c446ad2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be49fd648c446ad2 new file mode 100644 index 00000000000..5093830bd8f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be49fd648c446ad2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0a0a0a0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be6c9f9cf24eab39 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be6c9f9cf24eab39 new file mode 100644 index 00000000000..5d45476051f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/be6c9f9cf24eab39 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbCX000000A0\xfbCX000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf06da3cadbdfbef b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf06da3cadbdfbef new file mode 100644 index 00000000000..74afd3f4cb4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf06da3cadbdfbef @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfa\xfa000\xfa\xfa00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf22d92546932a6e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf22d92546932a6e new file mode 100644 index 00000000000..82e51b4180e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf22d92546932a6e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000000\xe8000\x9fA\xf1J000000\xe8000\x9fA\xf1A\xf1A\xe7\xffA\xf1A\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf2546822017de95 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf2546822017de95 new file mode 100644 index 00000000000..28cb6375430 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf2546822017de95 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6000000AA80AA8000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf7549ff7bad4d64 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf7549ff7bad4d64 new file mode 100644 index 00000000000..13a689b802f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf7549ff7bad4d64 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x7f\xffD0000\x7f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf8eb982624b82c0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf8eb982624b82c0 new file mode 100644 index 00000000000..30db8345482 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf8eb982624b82c0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2@\xa2@\xc2@e00000\xc2@e000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf9ced8cc2ba701f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf9ced8cc2ba701f new file mode 100644 index 00000000000..e5f4cc4631c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/bf9ced8cc2ba701f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa400\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd80\xd8\x0100\xd80\xd80\xd8\x00\xd800000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c056f2671928349c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c056f2671928349c new file mode 100644 index 00000000000..bad15e72bb5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c056f2671928349c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xfe") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c06ec10838f0dc12 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c06ec10838f0dc12 new file mode 100644 index 00000000000..4ca532e3358 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c06ec10838f0dc12 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X.0000000000000000200000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c082c3c0a13cacc7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c082c3c0a13cacc7 new file mode 100644 index 00000000000..704d310a8b7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c082c3c0a13cacc7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000Dkind\x80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c084835d17c9ec12 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c084835d17c9ec12 new file mode 100644 index 00000000000..eb5418f0cfa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c084835d17c9ec12 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000A\xcd0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c095718d75b5a474 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c095718d75b5a474 new file mode 100644 index 00000000000..065eaf6e1ac --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c095718d75b5a474 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe7\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0daa716d6a111c6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0daa716d6a111c6 new file mode 100644 index 00000000000..f194196b92d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0daa716d6a111c6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X<\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0e79ff5ce15b691 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0e79ff5ce15b691 new file mode 100644 index 00000000000..4af90204c80 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0e79ff5ce15b691 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0ff0fdfceef11f4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0ff0fdfceef11f4 new file mode 100644 index 00000000000..137f0ce5937 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c0ff0fdfceef11f4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c10bf222925edc9d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c10bf222925edc9d new file mode 100644 index 00000000000..6f5a0db6307 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c10bf222925edc9d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf0\x88\x88\x88\x88\x88\x88\x88\x88000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c156d2b38f1c0de4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c156d2b38f1c0de4 new file mode 100644 index 00000000000..ffa8f5ea893 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c156d2b38f1c0de4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb2a\xff000a\xee0a\xec0a\xec0a\x990b0\xec0a\xee0a\xec0a\xec0a\x990a\xec0a\xec0a\xec0a\xec0a\xec0a\xec0b0\xec0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c15a4c62e3c36cd9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c15a4c62e3c36cd9 new file mode 100644 index 00000000000..3bd48e60112 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c15a4c62e3c36cd9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f````````````````````````````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c1950223dbf5007e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c1950223dbf5007e new file mode 100644 index 00000000000..fc5a9187885 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c1950223dbf5007e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c199238d9de51473 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c199238d9de51473 new file mode 100644 index 00000000000..0292c795feb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c199238d9de51473 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf7000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c19a52a63f1592f5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c19a52a63f1592f5 new file mode 100644 index 00000000000..09dac7b0069 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c19a52a63f1592f5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xcd\xcd\xcd\xcd\xcd\xcd\xcd\xc0d0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c209b87b2fc242d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c209b87b2fc242d3 new file mode 100644 index 00000000000..c75dd5177e2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c209b87b2fc242d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c267443f2d089f0d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c267443f2d089f0d new file mode 100644 index 00000000000..31ee3c22c80 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c267443f2d089f0d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@0DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c26866d6315881ca b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c26866d6315881ca new file mode 100644 index 00000000000..cc19376a2d9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c26866d6315881ca @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc200\x8e\xc300\xc300\xc20000\xc300000\xc3000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c27f537fff3a8fcd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c27f537fff3a8fcd new file mode 100644 index 00000000000..87ddb2687a9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c27f537fff3a8fcd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf\xaf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c29187d1e1ff7e4f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c29187d1e1ff7e4f new file mode 100644 index 00000000000..6cf497ab5cb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c29187d1e1ff7e4f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfb00000000\xfb00000000\xfb00000000\xfb00000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2935d50a8251826 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2935d50a8251826 new file mode 100644 index 00000000000..264a1f87386 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2935d50a8251826 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc0d00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2a336fb46d90683 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2a336fb46d90683 new file mode 100644 index 00000000000..1686e835795 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2a336fb46d90683 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc3H00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2b30901e1e4062b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2b30901e1e4062b new file mode 100644 index 00000000000..7ed63f874d3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2b30901e1e4062b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X.000000000000\"0\x00\x10\x00\x000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2d954444c29c4d1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2d954444c29c4d1 new file mode 100644 index 00000000000..4a616b55490 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c2d954444c29c4d1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c305146a4b8c4b87 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c305146a4b8c4b87 new file mode 100644 index 00000000000..c4ebb60c218 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c305146a4b8c4b87 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c319a472c3065d7f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c319a472c3065d7f new file mode 100644 index 00000000000..c5f469f385d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c319a472c3065d7f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c389fb8592b009f8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c389fb8592b009f8 new file mode 100644 index 00000000000..dde9059789a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c389fb8592b009f8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf000000000000000000000000000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c38bdfbeece0fead b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c38bdfbeece0fead new file mode 100644 index 00000000000..7165d2f0b09 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c38bdfbeece0fead @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e;00000000\x8800000000000\x8e00000000000000000000\x8e000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c396eb0a65e3a52d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c396eb0a65e3a52d new file mode 100644 index 00000000000..45db8c9f7a9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c396eb0a65e3a52d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0\"\"\"\"0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c3e1e40cfc046982 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c3e1e40cfc046982 new file mode 100644 index 00000000000..4057aa5ff1d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c3e1e40cfc046982 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x8400\xf9\x00\x100\x84\xf9\x0100\xf9\x010000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c402b91b6ef79c38 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c402b91b6ef79c38 new file mode 100644 index 00000000000..200e734e030 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c402b91b6ef79c38 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xc2J0000000000\x84\xc2L00000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c42fc2de34cd76fa b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c42fc2de34cd76fa new file mode 100644 index 00000000000..b3ed2b03503 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c42fc2de34cd76fa @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c45479572672a57d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c45479572672a57d new file mode 100644 index 00000000000..8fcfa0247e7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c45479572672a57d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x7fa\xe4a0\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4e949c139ec2180 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4e949c139ec2180 new file mode 100644 index 00000000000..856ed9f7cfe --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4e949c139ec2180 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb808080808080808008008008008008008008008") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4f33b65deacc8fa b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4f33b65deacc8fa new file mode 100644 index 00000000000..5b804a04d6a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c4f33b65deacc8fa @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f0000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c537a340655e527c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c537a340655e527c new file mode 100644 index 00000000000..a4d6bca6940 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c537a340655e527c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfB000A0\xbf@0A00B000@0\xffA00A0\xbfA20@0A00A10B000@0\xffA10@0@0\xffB00\xa2A0\xbf@0A00B000A0\xbfA20@0A00A10A0\xbfA20@0A00A10B000@0\xffB000@0\xffA10@0\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c552c05438b74b1e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c552c05438b74b1e new file mode 100644 index 00000000000..1a2e00289d4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c552c05438b74b1e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c569380666f53c0d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c569380666f53c0d new file mode 100644 index 00000000000..cc6c3d28a1e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c569380666f53c0d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf1\xf1\xf1\xf1\xf1\xf1\xf1\xf1\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c56a965e60a56259 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c56a965e60a56259 new file mode 100644 index 00000000000..7dc07dc7577 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c56a965e60a56259 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4b0\xfc0g000\xb50000e0000\xcd0e00\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c59fa47b4a9d26bf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c59fa47b4a9d26bf new file mode 100644 index 00000000000..79c918993df --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c59fa47b4a9d26bf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ad6957121b5593 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ad6957121b5593 new file mode 100644 index 00000000000..4cce05c8260 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ad6957121b5593 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e000000A00A10@0D00000@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ba227e2e5ada5a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ba227e2e5ada5a new file mode 100644 index 00000000000..2ee08f09b99 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5ba227e2e5ada5a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5bdf80813ae4b47 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5bdf80813ae4b47 new file mode 100644 index 00000000000..1cf4c76b353 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5bdf80813ae4b47 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7ǡ000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5d98c8ca09b35b8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5d98c8ca09b35b8 new file mode 100644 index 00000000000..308746a3258 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5d98c8ca09b35b8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9|\x0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5e60e677ba77a6e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5e60e677ba77a6e new file mode 100644 index 00000000000..3b2e7fde4f8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c5e60e677ba77a6e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfa1000\xfa1000\x84\xfa0000\xfa100000\x84\xfa10000\x84\xfa1000\xfa100000\x84\xfa1000\xfa100000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c67cff6578b19ebc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c67cff6578b19ebc new file mode 100644 index 00000000000..0bf4d29f8cb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c67cff6578b19ebc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("`") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c71fa99285da850d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c71fa99285da850d new file mode 100644 index 00000000000..d22abf32bcc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c71fa99285da850d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb80808080808080808080808080808080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7220ca12a4ef8a7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7220ca12a4ef8a7 new file mode 100644 index 00000000000..8ed8795a0bd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7220ca12a4ef8a7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7250856c0a213df b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7250856c0a213df new file mode 100644 index 00000000000..4a952cfda3c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7250856c0a213df @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2B00\xa2A0\xbf\xffB00\xa2A0\xbf\xffB00\xa2A0\xbfA0\xbf\xffA1\xbf\xffA0\xbfA0\xbf\xffB00\xa2A0\xbf080A1\xbf\xffA0\xbf\xff\xffB00\xa2A0\xbf\xffA0\xbf\xffB00\xbf\xff\xff\xffB00\xa2A0\xbf\xffA0\xbf\xffB00\xa2A0\xbf\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c74aee6aae305bce b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c74aee6aae305bce new file mode 100644 index 00000000000..21bb7d367c3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c74aee6aae305bce @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xf80\xf80\xf80\xf80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7a66e35912445f1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7a66e35912445f1 new file mode 100644 index 00000000000..203a58bafb6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7a66e35912445f1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc0a\xc00\xc0c00\x9f\xc0a\xc00\xc0a\xc00\xc0a\xc0\xc0a\x9f\xc0a\xc00\xc0c00\x9f\xc0a\xc00\xc0a\xc00\xc0a\xc0\xc0a\xc0\xc0a\xc0\xc0a\xc0\xc0a\xc0\xc0a\xc0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7da36c985259cd7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7da36c985259cd7 new file mode 100644 index 00000000000..02b13114de1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c7da36c985259cd7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff\xa2\x7f\xff\x94\x7f\xff\x7f\xff\x7f\xff\x7f\xff\x7f\xff\x7f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c8567685ad259e52 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c8567685ad259e52 new file mode 100644 index 00000000000..08d22afa39e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c8567685ad259e52 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc10\xc10\xc10\xc10\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c85e0cac0963afde b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c85e0cac0963afde new file mode 100644 index 00000000000..baae22d800e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c85e0cac0963afde @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c87b3385d68fcb4c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c87b3385d68fcb4c new file mode 100644 index 00000000000..1bde79e2a83 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c87b3385d68fcb4c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4000000\xc2J00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c909dc499df33263 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c909dc499df33263 new file mode 100644 index 00000000000..475b0ba2bb3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c909dc499df33263 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900C000\xd900\xd900\xd9000\xd900\xd900\xd900\xd900\xd900\xd900\xd9000\xd9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9325f0fb91579c8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9325f0fb91579c8 new file mode 100644 index 00000000000..35cb453db2a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9325f0fb91579c8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9!0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c94bacb2debff0bb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c94bacb2debff0bb new file mode 100644 index 00000000000..b7adf0f57fa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c94bacb2debff0bb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x8b00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c977d8be82ae65e8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c977d8be82ae65e8 new file mode 100644 index 00000000000..30a7087c361 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c977d8be82ae65e8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2X<\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c992f9cf30d97b42 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c992f9cf30d97b42 new file mode 100644 index 00000000000..bb104e7bae6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c992f9cf30d97b42 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x850````") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9da8b18f8e12f60 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9da8b18f8e12f60 new file mode 100644 index 00000000000..d22c4dbbfd2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9da8b18f8e12f60 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa400B00_\xff0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9e63caa029986bb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9e63caa029986bb new file mode 100644 index 00000000000..e860d091848 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/c9e63caa029986bb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00000000000000000000000000000000000000000000000000000000000000000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca2d648a3cb0c759 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca2d648a3cb0c759 new file mode 100644 index 00000000000..b59486e3778 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca2d648a3cb0c759 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca52c065f613e798 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca52c065f613e798 new file mode 100644 index 00000000000..2fc421cfcae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca52c065f613e798 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f``\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca92b9222dd2d8e0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca92b9222dd2d8e0 new file mode 100644 index 00000000000..1ea031d7948 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ca92b9222dd2d8e0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa8\xf9\x00\x00000\xf9\x00\x0000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/caf81e9797b19c76 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/caf81e9797b19c76 new file mode 100644 index 00000000000..67322c70489 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/caf81e9797b19c76 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb05e16c05ad1ebb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb05e16c05ad1ebb new file mode 100644 index 00000000000..ca53a10fee7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb05e16c05ad1ebb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc1;\xff\xff\xff\xff\xff\xff\xff\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb8ada551a7b1103 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb8ada551a7b1103 new file mode 100644 index 00000000000..76e08119c5e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb8ada551a7b1103 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xfb00000000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb981ff836d2f8ef b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb981ff836d2f8ef new file mode 100644 index 00000000000..77cbc73639c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cb981ff836d2f8ef @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xce\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbd0e0fa88a03817 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbd0e0fa88a03817 new file mode 100644 index 00000000000..d38b781154f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbd0e0fa88a03817 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4009000_\xff0_\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbe291ca2e13acc7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbe291ca2e13acc7 new file mode 100644 index 00000000000..f7b6f3b8696 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbe291ca2e13acc7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xc3G0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbf32e563c060c20 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbf32e563c060c20 new file mode 100644 index 00000000000..87468403224 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cbf32e563c060c20 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f00\xff00000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc4a7b089c77e204 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc4a7b089c77e204 new file mode 100644 index 00000000000..b58795f1730 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc4a7b089c77e204 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0\x1709200A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc7e54b080bfb28a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc7e54b080bfb28a new file mode 100644 index 00000000000..012d25c95ec --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc7e54b080bfb28a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x00000\xfb00000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc92c0640561df14 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc92c0640561df14 new file mode 100644 index 00000000000..981ab5a942e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc92c0640561df14 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc9a5e6c88270c67 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc9a5e6c88270c67 new file mode 100644 index 00000000000..220036dace3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cc9a5e6c88270c67 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xbf\xff0\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccbc2aaee70f9aa2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccbc2aaee70f9aa2 new file mode 100644 index 00000000000..0db597389f9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccbc2aaee70f9aa2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\x002A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccd6eaea73cf3985 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccd6eaea73cf3985 new file mode 100644 index 00000000000..8615c60fc1e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ccd6eaea73cf3985 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x848080\xfa\x7f\xff000B00900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd23583379916d06 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd23583379916d06 new file mode 100644 index 00000000000..30369ed773f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd23583379916d06 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf000000000000000000000000000000000000000\x84\x84\x84\x84\x84\x84\x84\x840000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd68d386a5ec2ef0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd68d386a5ec2ef0 new file mode 100644 index 00000000000..4f69228f5e1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd68d386a5ec2ef0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f000000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd9db6f520f31525 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd9db6f520f31525 new file mode 100644 index 00000000000..1b6c1e66ee6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cd9db6f520f31525 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2;\xd00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdbb6c57c8b92a0c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdbb6c57c8b92a0c new file mode 100644 index 00000000000..d134e105fb7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdbb6c57c8b92a0c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x83\xd80\xd80000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdff55c9c139f0f6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdff55c9c139f0f6 new file mode 100644 index 00000000000..6ecda5cacb9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cdff55c9c139f0f6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2XQ020000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce37bbd59bea0571 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce37bbd59bea0571 new file mode 100644 index 00000000000..7bba9e3838d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce37bbd59bea0571 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_@@\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce3b3204fb117015 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce3b3204fb117015 new file mode 100644 index 00000000000..a515de32a51 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce3b3204fb117015 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc1;\x8000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce7d1b55ce99c810 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce7d1b55ce99c810 new file mode 100644 index 00000000000..7895d927064 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce7d1b55ce99c810 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7fq000000\xec0000000000````````````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce8053e68e69ee6b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce8053e68e69ee6b new file mode 100644 index 00000000000..b4b50241e3d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce8053e68e69ee6b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf4000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce899e8c955f8d55 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce899e8c955f8d55 new file mode 100644 index 00000000000..f86c58dd446 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ce899e8c955f8d55 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x80B0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cea76eacee2e91b7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cea76eacee2e91b7 new file mode 100644 index 00000000000..d3de0b97663 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cea76eacee2e91b7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xbf\xbf\xbf\xbf\xbf\xbf\xbf\xbf8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cebb4b4b42665e44 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cebb4b4b42665e44 new file mode 100644 index 00000000000..a5d4765c461 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cebb4b4b42665e44 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84000\x8400\x840000\x8400\x84000\x8400000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf57287860d71fc3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf57287860d71fc3 new file mode 100644 index 00000000000..c56f944b003 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf57287860d71fc3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf00000000000000000000000000000000000000000000000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf8eb840fdfe52e4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf8eb840fdfe52e4 new file mode 100644 index 00000000000..fe727a1a3ad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf8eb840fdfe52e4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xcc\xcce000000i0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf97e422eface2da b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf97e422eface2da new file mode 100644 index 00000000000..a1fff089686 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf97e422eface2da @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xf90\xf9\xe80\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf99b2bf4e83673d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf99b2bf4e83673d new file mode 100644 index 00000000000..6c71df076a7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cf99b2bf4e83673d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q\x00\x00\x00\x00\x00\x00\x00\x00\x00\x800000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfbbf822a66b7932 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfbbf822a66b7932 new file mode 100644 index 00000000000..d4e26edb3ef --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfbbf822a66b7932 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\x10000001A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfc50e2e9ed64420 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfc50e2e9ed64420 new file mode 100644 index 00000000000..f16f67b1513 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/cfc50e2e9ed64420 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xfbC\xa0900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0004daf29ea03d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0004daf29ea03d3 new file mode 100644 index 00000000000..f90ac8de808 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0004daf29ea03d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa800080000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d00d1817fa9a9ae4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d00d1817fa9a9ae4 new file mode 100644 index 00000000000..467150144f0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d00d1817fa9a9ae4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xbf8") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d01eda585945312c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d01eda585945312c new file mode 100644 index 00000000000..00eec6ac96c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d01eda585945312c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000000Dkind\xc10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d04474c9d020c8d8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d04474c9d020c8d8 new file mode 100644 index 00000000000..ccbc7ba9d11 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d04474c9d020c8d8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200A0\xa200A0\xc00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d06daf89e408f49f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d06daf89e408f49f new file mode 100644 index 00000000000..cfa35800bba --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d06daf89e408f49f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa200000\xa200000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d09365b72d3925a2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d09365b72d3925a2 new file mode 100644 index 00000000000..e36587be4fb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d09365b72d3925a2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa2\xf60\xf60\xf6\xa2\xf60\xf60\xf6\xa2\xf60\xf600\xa2\xf6\xa2\xf60\xf60000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d097ca16a70b8f79 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d097ca16a70b8f79 new file mode 100644 index 00000000000..c25a8637b0b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d097ca16a70b8f79 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0009\x00\x000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0bbb79b562f6415 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0bbb79b562f6415 new file mode 100644 index 00000000000..6c6f08094ff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0bbb79b562f6415 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00000\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe70A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0c856dbf7154d95 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0c856dbf7154d95 new file mode 100644 index 00000000000..079d1dc27a5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0c856dbf7154d95 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf900\xf900\x9f\xf900\xf900\xf900\xf900\xf900\xf900\x9f\xf900\xf900\xf900\xff\xf971\xf900\xf900\xf900\xf900\xf900\x9f\xf900\xf900\xf900\xff\xf900\xf900\xf900\xf900\xff\xf900\x9f\xf900\xf900\xf900\xff\xf900\xf900\xf900\xf900\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0fcef4d7cce66f5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0fcef4d7cce66f5 new file mode 100644 index 00000000000..e3adbb59324 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d0fcef4d7cce66f5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d113f09715657b14 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d113f09715657b14 new file mode 100644 index 00000000000..a1b181ebb39 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d113f09715657b14 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xf40\xf40\xf40\xf40") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d115976bedb0cfcc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d115976bedb0cfcc new file mode 100644 index 00000000000..09969d079d2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d115976bedb0cfcc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xfb00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d11f1208ce01c968 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d11f1208ce01c968 new file mode 100644 index 00000000000..b7ab49df4cd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d11f1208ce01c968 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xf40") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d28b9bfa056de288 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d28b9bfa056de288 new file mode 100644 index 00000000000..f059f64b6ed --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d28b9bfa056de288 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd7\xd700800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2a3b57f94a2698c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2a3b57f94a2698c new file mode 100644 index 00000000000..bc8d4f489cf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2a3b57f94a2698c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfbCX000001A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2efdd57c6c51d01 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2efdd57c6c51d01 new file mode 100644 index 00000000000..83a9aca73f0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d2efdd57c6c51d01 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa400\xda0000\xda0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d31a2eaf102c0e92 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d31a2eaf102c0e92 new file mode 100644 index 00000000000..1b83d5c8393 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d31a2eaf102c0e92 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\U000edc08\x880e\U000edc2200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3396abfa54f2a94 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3396abfa54f2a94 new file mode 100644 index 00000000000..d5c04812054 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3396abfa54f2a94 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf\xcf") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d34b3ac54bd82a22 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d34b3ac54bd82a22 new file mode 100644 index 00000000000..8814dbcb1e7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d34b3ac54bd82a22 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xf900\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3b3ee9484b292af b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3b3ee9484b292af new file mode 100644 index 00000000000..783e42d68f1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3b3ee9484b292af @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00A1900B000@0\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3fdce896e7e9ab9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3fdce896e7e9ab9 new file mode 100644 index 00000000000..76e20e62d2a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d3fdce896e7e9ab9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2D000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4305711e8aca01d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4305711e8aca01d new file mode 100644 index 00000000000..90274e4cfe7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4305711e8aca01d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb2a\xff00010a\xec0a\xec0a\x980b0\xec0a\xee0a\xec0\xb2a\xff000a\xee0a\xec0a\xec0a\x980b0\xec0a\xee0a\xec0a\xec0a\x990a\xec0a\xec0a\xec0a\xec0a\xec0a\xec0a\xec800a\x990a\xec0a\xec0a\xec0a\xec0a\xec0a\xec0b0\xec0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4345d0b133285a1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4345d0b133285a1 new file mode 100644 index 00000000000..2127bd02d15 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4345d0b133285a1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40000\x800\x800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d445da7f776378f0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d445da7f776378f0 new file mode 100644 index 00000000000..e494f73a89a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d445da7f776378f0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("s\x8a000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d48f74efeef4222e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d48f74efeef4222e new file mode 100644 index 00000000000..0a51d6a1f97 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d48f74efeef4222e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2V00000000000000\xfb00000000A\x8d0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4b2bd124f3f2dc9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4b2bd124f3f2dc9 new file mode 100644 index 00000000000..3b2d366f549 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4b2bd124f3f2dc9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0\x00\x10\x00\x00000\x00\x10\x9f\xf1\xf1\xf1\xf1\xf1\xf1\xe7\xe7\xf1\xf1\xe7\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4d4eba6ec26663c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4d4eba6ec26663c new file mode 100644 index 00000000000..d6e7d370610 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4d4eba6ec26663c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf9A0\xf9A0\x9f\xf9A0\xf9A0\xf9A0\xf9A0\x9f\xf9A0\xf9A0\xf9A0\xff\xf9A0\xf9A0\xf9A0\xf9A0\xf9A0\xf9A0\x9f\xf9A0\xf9A0\xf9A0\xff\xf9A0\xf9A0\xf9A0\xf9X0\xf9A0\xff\xf9A0\x9f\xf9A0\xf9A0\xf9A0\xff\xf9A0\xf9A0\xf9A0\xf9X0\xf9A0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4ef06e7d9a17553 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4ef06e7d9a17553 new file mode 100644 index 00000000000..3f97bdcce60 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d4ef06e7d9a17553 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xb9\x00\x00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d520a072a3f7f539 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d520a072a3f7f539 new file mode 100644 index 00000000000..8fff0e4f9a1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d520a072a3f7f539 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x00\x00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d53436565d2ac971 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d53436565d2ac971 new file mode 100644 index 00000000000..87dc59ac6d4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d53436565d2ac971 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6800001020C0000C0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5c6233f34e10dbe b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5c6233f34e10dbe new file mode 100644 index 00000000000..2d7aa8bad48 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5c6233f34e10dbe @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\x7f\xff\x7f\xff\x7f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5dfdc5b58cff399 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5dfdc5b58cff399 new file mode 100644 index 00000000000..ff7d6b45518 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d5dfdc5b58cff399 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d611700b16e36251 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d611700b16e36251 new file mode 100644 index 00000000000..622c36ec6fe --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d611700b16e36251 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xp0000000000000+00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d614d90e1b994d8e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d614d90e1b994d8e new file mode 100644 index 00000000000..7dfe4bcfb04 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d614d90e1b994d8e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f0\x9f\x9f\xff\x9f\x9f\xff\xff\xff\x9f\x9f\x9f\x9f\xff\xff\xff\xff0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d63c0b44fcdcf512 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d63c0b44fcdcf512 new file mode 100644 index 00000000000..f526ff61bf0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d63c0b44fcdcf512 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x85\xf4\xf4\xf4\x85\xf4\xf4\xf4\xf4\xf40A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d648bb6e12a71535 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d648bb6e12a71535 new file mode 100644 index 00000000000..1ee31afe22b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d648bb6e12a71535 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf6") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6970b0297164416 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6970b0297164416 new file mode 100644 index 00000000000..a7b336df95d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6970b0297164416 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xae\xc300\xc300\xc200\x8e000000000000000\xc300\xc300\xc20000\xc300\xc30000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d69d73fa06173481 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d69d73fa06173481 new file mode 100644 index 00000000000..42a06562345 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d69d73fa06173481 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa3\xf6\xa200\xf6\xa200\xf6\xa3\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa200\xf6\xa20000\xf6\xa200\xf6\xa200\xf6\xa2\xf6\xa200\xf6\xa200\xf6\xa200\xf6\xa200\xf6\xa200\xf6\xa2000000\xf6\xa200\xf6\xa100\xf6\xa200000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6d4e437762b5339 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6d4e437762b5339 new file mode 100644 index 00000000000..924fb051daf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d6d4e437762b5339 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xf6\xf6\xf6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d74848e91e282547 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d74848e91e282547 new file mode 100644 index 00000000000..9544572c546 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d74848e91e282547 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f````````````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d768496e51d5d7a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d768496e51d5d7a3 new file mode 100644 index 00000000000..40a34e7302a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d768496e51d5d7a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersiond/00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d7be098f1a144539 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d7be098f1a144539 new file mode 100644 index 00000000000..56a5c54aa0d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d7be098f1a144539 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000000\xe8000\x9fA\xf1A\xf1A\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d80a76d19d961333 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d80a76d19d961333 new file mode 100644 index 00000000000..027b8c880d2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d80a76d19d961333 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte(":0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d850c0dec6bbcc67 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d850c0dec6bbcc67 new file mode 100644 index 00000000000..37e725925b3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d850c0dec6bbcc67 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00\x8e000\x8e00\x8e000\xa000\xa0\xa0\xa0\xa0\xa000\xa0\xa0\xa00\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa000\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa00\xa0\xa0\xa0\xa0\xa0\xa0\xa0000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d89f0b98e6a21368 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d89f0b98e6a21368 new file mode 100644 index 00000000000..3d383bf20ca --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d89f0b98e6a21368 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8f12be090eebd2b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8f12be090eebd2b new file mode 100644 index 00000000000..a2d1c5b7a20 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8f12be090eebd2b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\xa1B00\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8fd8ecd00d977eb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8fd8ecd00d977eb new file mode 100644 index 00000000000..74f07f606c8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d8fd8ecd00d977eb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J\x19\x19\x19\x19\x19\x19\x19\x19000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d901ad3f9288692d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d901ad3f9288692d new file mode 100644 index 00000000000..d231bfd759f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d901ad3f9288692d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\xc7\xc70\xc7\xc7\xc70") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d903f1af04618bee b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d903f1af04618bee new file mode 100644 index 00000000000..a8e86517871 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d903f1af04618bee @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion900D000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d917b443825d01fd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d917b443825d01fd new file mode 100644 index 00000000000..87ad3e7b853 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d917b443825d01fd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xd900\xd900\xd900\xd900\xd900C000\xd9000\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900C0100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d91c35fad05ca52b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d91c35fad05ca52b new file mode 100644 index 00000000000..e5a7e5fc715 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d91c35fad05ca52b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc0b0\xc00\xc0c00\x9f\xc0b0\xc00\xc0b0\xc00\xc0a\xc0\xc0a\xc0\xc0a\xc0\xc0a\xc0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d98b2cd76a0d80b6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d98b2cd76a0d80b6 new file mode 100644 index 00000000000..e818f684e0e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d98b2cd76a0d80b6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f```````\x9f````````````\xff```````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b0d3bd2cdd7aff b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b0d3bd2cdd7aff new file mode 100644 index 00000000000..71f26877e58 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b0d3bd2cdd7aff @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b332edef751e77 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b332edef751e77 new file mode 100644 index 00000000000..8adc7b37666 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b332edef751e77 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x890000\xc1\xf9000\xc1\xf900\xc1\xf9000\xc1\xf9000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b60512bd8ee3d7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b60512bd8ee3d7 new file mode 100644 index 00000000000..66d56515a03 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9b60512bd8ee3d7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e4f00ec75a1350 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e4f00ec75a1350 new file mode 100644 index 00000000000..62678f3f310 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e4f00ec75a1350 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2e00000\xfb\x00\x00\x00\x00\x00\x00\x00yA0\xfb\x00\x00\x00\x00\x00\x00\x00yA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e6ddf0e0bedbbd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e6ddf0e0bedbbd new file mode 100644 index 00000000000..6355fc4d5e2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9e6ddf0e0bedbbd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000000000080V00000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9f719ec5581eeae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9f719ec5581eeae new file mode 100644 index 00000000000..3a271b70f01 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/d9f719ec5581eeae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x840\x84\x8400\xf9\x0000\xf9\x00000\xf9\x0000\xf9\x000e00000\x84\x840\x84\x8400\xf9\x0000\xf9\x00000\xf9\x0000\xf9\x00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da08e2026943635a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da08e2026943635a new file mode 100644 index 00000000000..7634733ac88 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da08e2026943635a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9a1A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da1568ea7ea892cf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da1568ea7ea892cf new file mode 100644 index 00000000000..d6567b92905 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da1568ea7ea892cf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x8500000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da19b92fbc78d1e9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da19b92fbc78d1e9 new file mode 100644 index 00000000000..f40f04ab1d7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da19b92fbc78d1e9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa81020900070\"0 0!000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da5a1734522656c9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da5a1734522656c9 new file mode 100644 index 00000000000..6114640f725 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/da5a1734522656c9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa5\xdb00000000\xdb00000000\xdb00000000\xdb00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/db2480c0e62b982d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/db2480c0e62b982d new file mode 100644 index 00000000000..113795998fa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/db2480c0e62b982d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xf900\xf900\xf900\xf900\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dba0c13519a4b8d1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dba0c13519a4b8d1 new file mode 100644 index 00000000000..15057152d79 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dba0c13519a4b8d1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x840\xa0\xa00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbc62d7c5ed60a7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbc62d7c5ed60a7 new file mode 100644 index 00000000000..b7f1fd0c17d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbc62d7c5ed60a7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc300\xc300\xc20000\xc30000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbdb26c80952cdc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbdb26c80952cdc new file mode 100644 index 00000000000..83c9fc98fd0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbbdb26c80952cdc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x87$\xf9\x1410\x84\xf9\x87$\xa2e00000\x84\xf9\x87$\xf9\x1410\x84\xf9\x87$\xf9\x14100A0\xf9\x14100A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbd5e5c836fd2581 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbd5e5c836fd2581 new file mode 100644 index 00000000000..6c8155e1a3b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbd5e5c836fd2581 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb400\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbf270c8c2cbe97d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbf270c8c2cbe97d new file mode 100644 index 00000000000..4066deeae8b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dbf270c8c2cbe97d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x7f\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc0b48adcb6f3422 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc0b48adcb6f3422 new file mode 100644 index 00000000000..65c599ac80a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc0b48adcb6f3422 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc2693608f14abc7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc2693608f14abc7 new file mode 100644 index 00000000000..b36ab25d59f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc2693608f14abc7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\x800\x800\x800\x800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc33e41f97c5e722 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc33e41f97c5e722 new file mode 100644 index 00000000000..84ac91cf22d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc33e41f97c5e722 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf900\xf9000\x84\xf9000\x84\xf900\xf900\x84\xf900\xf9000\x84\xf9000\x84\xf900\xf900\xf900\x84\xf900\xf90000\xf900\x84\xf900\xf900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc54cb7e91d2f38a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc54cb7e91d2f38a new file mode 100644 index 00000000000..c7e40f17cdb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dc54cb7e91d2f38a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xc2J10000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dcb7dbbc5633c823 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dcb7dbbc5633c823 new file mode 100644 index 00000000000..11efb1a3fc1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dcb7dbbc5633c823 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa68000010\xcc000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd114954c6581eaf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd114954c6581eaf new file mode 100644 index 00000000000..5969415effa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd114954c6581eaf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0009\x1020A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd56a42edd44a31e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd56a42edd44a31e new file mode 100644 index 00000000000..fc4e0be381d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd56a42edd44a31e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("g00000\xb20") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd857fcb979bfe7e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd857fcb979bfe7e new file mode 100644 index 00000000000..843b87e30a7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dd857fcb979bfe7e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900\xd900900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dda536b0c6c477a4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dda536b0c6c477a4 new file mode 100644 index 00000000000..0ffb5a02fdf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dda536b0c6c477a4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\xa100\x82\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddc94258c6d436e7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddc94258c6d436e7 new file mode 100644 index 00000000000..ce90f393910 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddc94258c6d436e7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf970\xf970\xf970\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf970\xf9X1\xff\xf970\x9f\xf970\xf970\xf970\xff\xf970\xf970\xf970\xf9X1\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddd7122d6b920c0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddd7122d6b920c0e new file mode 100644 index 00000000000..42d35ec194d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ddd7122d6b920c0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf9\x87 \xf90100A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddcbaccc19776b2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddcbaccc19776b2 new file mode 100644 index 00000000000..13338d0bca6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddcbaccc19776b2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa610207000\xc1\xfb\xff\xff000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddf1846fceddce3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddf1846fceddce3 new file mode 100644 index 00000000000..f50f9250f1d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dddf1846fceddce3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc1A0\xc1A0\xc1A0\x9f\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xff\xc1A0\xc1A0\xc1A0\xc1A0\xc1A0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de0ea661f505081f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de0ea661f505081f new file mode 100644 index 00000000000..cd4c8b1d768 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de0ea661f505081f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb50000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de7d39a9e883a7a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de7d39a9e883a7a3 new file mode 100644 index 00000000000..12994ea3dd4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de7d39a9e883a7a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xa1\xa10\xa10000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de807a203aa69aa5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de807a203aa69aa5 new file mode 100644 index 00000000000..46e342f6133 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de807a203aa69aa5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd6\xd6\xd6\xd6\xd6\xd6\xd6e00000\xc9\xd6\xd6\xd6\xd6\xd6\xd6\xd6000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de811a258abba75b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de811a258abba75b new file mode 100644 index 00000000000..21bdf9fbae5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/de811a258abba75b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e`````000000e00000\x8e`````000A000```0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/deaa5873c0f69efc b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/deaa5873c0f69efc new file mode 100644 index 00000000000..515a466135b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/deaa5873c0f69efc @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dec0f6f47e85a369 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dec0f6f47e85a369 new file mode 100644 index 00000000000..b7578b9264f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dec0f6f47e85a369 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x81\x81\x81\x81\x81\x81\x810A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/decc7a5ecb5a678b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/decc7a5ecb5a678b new file mode 100644 index 00000000000..c35098d997c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/decc7a5ecb5a678b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0009200A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dfc84ff236d027b3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dfc84ff236d027b3 new file mode 100644 index 00000000000..a2d1181edfb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dfc84ff236d027b3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e00\x8e0000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\x8e00\x8e0000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf60\xf60\x8e00\x8e0000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\x8e00\x8e0000000\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf60\xf600A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dff21a19e1e06332 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dff21a19e1e06332 new file mode 100644 index 00000000000..ef209990bb0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/dff21a19e1e06332 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xc3G0000000\xc3G00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e00c3868c3521fac b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e00c3868c3521fac new file mode 100644 index 00000000000..839e616d960 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e00c3868c3521fac @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xe30\xf300\xa4N\xf3\xe9\xf30") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0239b7e360550d4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0239b7e360550d4 new file mode 100644 index 00000000000..92a7bbe46ee --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0239b7e360550d4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa61020\xfb00000000000\xc1\x1b\xff00000000\xc1\x1b\xff00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0253e58c1278db5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0253e58c1278db5 new file mode 100644 index 00000000000..b273301ba0c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0253e58c1278db5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\x9f0\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e09446469e38d4c0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e09446469e38d4c0 new file mode 100644 index 00000000000..83c71064ecc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e09446469e38d4c0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb8080808080808080808080808080808080808080808080808080808080808080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0a4ad169f562276 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0a4ad169f562276 new file mode 100644 index 00000000000..d2b93bfb8d7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0a4ad169f562276 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0209\xb900A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0bea26cbe05f309 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0bea26cbe05f309 new file mode 100644 index 00000000000..902d6671ea0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0bea26cbe05f309 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84080\x1b00000000\x1b00000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0c36c194e38abe2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0c36c194e38abe2 new file mode 100644 index 00000000000..88ea8e1afc8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0c36c194e38abe2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e000000A00A10@0D00000H000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0f13d706712c27c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0f13d706712c27c new file mode 100644 index 00000000000..720e28ada09 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e0f13d706712c27c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xc0\xa1\xa1\xa1\xa1000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e115e0e92c80ae81 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e115e0e92c80ae81 new file mode 100644 index 00000000000..dad51384a4c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e115e0e92c80ae81 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x850;\xf600000000;\xf600000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e116bb5f3500c008 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e116bb5f3500c008 new file mode 100644 index 00000000000..32654205a8d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e116bb5f3500c008 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2J10000101000A$1a00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e18f73c8b648a004 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e18f73c8b648a004 new file mode 100644 index 00000000000..278194540ea --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e18f73c8b648a004 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\x9f\x9f\x9f\x9f\x9f\x9f\xff\xff\x9f\xff\xff\xff\xff\xff\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1b0253f249a77c7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1b0253f249a77c7 new file mode 100644 index 00000000000..7e6bc2f3e15 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1b0253f249a77c7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x880000\xf4\xf4\xf4\xf4000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e2857863034da3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e2857863034da3 new file mode 100644 index 00000000000..e620b2181f2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e2857863034da3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\xc1\xf9\x00\x00\xc1\xf9\x00\x000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e60c8715020585 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e60c8715020585 new file mode 100644 index 00000000000..f429d849d8b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e1e60c8715020585 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f````````````@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A0```````````````````A") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e205aa29bf76e48a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e205aa29bf76e48a new file mode 100644 index 00000000000..03d0542b68e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e205aa29bf76e48a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x85\xa2e00000\x85\xf4\xf4\xf4\x85\xf4\xf4\x85\xa2e00000\x85\xf4\xf4\xf4\x85\xf4\xf4\xf4\xf4\xf40A0\xf4\xf4\xf4\x85\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf40A0\xf4\xf4\xf4\x85\xf4\xf4\xf4\xf4\xf40A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2078d43c8b391ad b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2078d43c8b391ad new file mode 100644 index 00000000000..3d0295a3a2e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2078d43c8b391ad @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e225d447330fd2d6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e225d447330fd2d6 new file mode 100644 index 00000000000..ae44badcfa8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e225d447330fd2d6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa20\x7f\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e24dbb6e8096342c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e24dbb6e8096342c new file mode 100644 index 00000000000..3f6b1aab27a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e24dbb6e8096342c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xa00\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e275d1372d1784ae b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e275d1372d1784ae new file mode 100644 index 00000000000..637f92c059d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e275d1372d1784ae @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbf\xf60\xf600000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b683bfacbdf49d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b683bfacbdf49d new file mode 100644 index 00000000000..3e03289bb64 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b683bfacbdf49d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8e000000000000\x8e000\x8e0000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b838c1cd418265 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b838c1cd418265 new file mode 100644 index 00000000000..2e499740801 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2b838c1cd418265 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3\xc2Xp\x00x\x10\x000002210B000800000001$1120200001010000000000z000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2bdcf284e58ecc1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2bdcf284e58ecc1 new file mode 100644 index 00000000000..e8b4212cd82 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2bdcf284e58ecc1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00\xeb000i00\xe90000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2c21d38856e15a3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2c21d38856e15a3 new file mode 100644 index 00000000000..837c406a875 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e2c21d38856e15a3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2809") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e329ddf4a563f52b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e329ddf4a563f52b new file mode 100644 index 00000000000..3f132e1c8cd --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e329ddf4a563f52b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("l0000000\xdd0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3443030b91d09bb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3443030b91d09bb new file mode 100644 index 00000000000..910cd4680e5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3443030b91d09bb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e37da7df2b3a7988 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e37da7df2b3a7988 new file mode 100644 index 00000000000..6fb5098000a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e37da7df2b3a7988 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd9\xd9\xf7\xd9\xd9\xf7\xa200\xd9\xd9\xf7\xd9\xd9\xf7000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e393a5bcca42e005 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e393a5bcca42e005 new file mode 100644 index 00000000000..6ef200c3764 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e393a5bcca42e005 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9 0A080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3a90ef85cf7113c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3a90ef85cf7113c new file mode 100644 index 00000000000..499a30a22f9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3a90ef85cf7113c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\xa100\x82\xa100\x82\xa100\x82\xa100\x82\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3aba5f05fdcc281 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3aba5f05fdcc281 new file mode 100644 index 00000000000..207662fe6d5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3aba5f05fdcc281 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\x80AA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3e7e02a2abca655 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3e7e02a2abca655 new file mode 100644 index 00000000000..8606d38611e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e3e7e02a2abca655 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f`````````````````````````````````\xff0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e406d8c2f357a6d5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e406d8c2f357a6d5 new file mode 100644 index 00000000000..3019bf89221 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e406d8c2f357a6d5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa610207000\xc1\xfb\xbe0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e40aa8747281bb90 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e40aa8747281bb90 new file mode 100644 index 00000000000..12082ad76d6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e40aa8747281bb90 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200C000\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd50") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e42c878ccd08e971 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e42c878ccd08e971 new file mode 100644 index 00000000000..020fd4b9ccc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e42c878ccd08e971 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\x1b00000000\x1b00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e44a59b4cdc0cacf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e44a59b4cdc0cacf new file mode 100644 index 00000000000..aa614edca13 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e44a59b4cdc0cacf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xeb\xec\xec\xeb\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xec\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e485a079130adb24 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e485a079130adb24 new file mode 100644 index 00000000000..2d5d5efdda9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e485a079130adb24 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf8\x14") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e48eba5e1fdb70f1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e48eba5e1fdb70f1 new file mode 100644 index 00000000000..b22c137c79d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e48eba5e1fdb70f1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xc2@\x84\xc2@00\x84\xc2@\x84\xc2@\x84\xc2@00\x84\xc2@\x84\xc2@0\xc2@0\xc2@\x84\xc2@0\xc2@0\xc2@0\xc2@\x84\xc2@0\xc2@0\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e49ec1803831bfde b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e49ec1803831bfde new file mode 100644 index 00000000000..07ae8e8b4f8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e49ec1803831bfde @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xc2@\x84\xc2@0\xc2J0000000000\x84\xc2@\x84\xc2@\x84\xc2@0\xc2J0000000000\x84\xc2@\x84\xc2@0\xc2@0\xc2@\x84\xc2@0\xc2@0\xc2@0\xc2@0\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e3d4f0c2a095bf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e3d4f0c2a095bf new file mode 100644 index 00000000000..4f441daa4c4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e3d4f0c2a095bf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x82\x1b\x820000000\x1b\x8200000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e6de5c4d070d5a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e6de5c4d070d5a new file mode 100644 index 00000000000..1f218d56848 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e4e6de5c4d070d5a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xc2@0\xc2@0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e561b1a6635012d4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e561b1a6635012d4 new file mode 100644 index 00000000000..8d793b1b437 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e561b1a6635012d4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb0\xd20\xc90\xd50\xc90") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e56de0253e4ac6d0 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e56de0253e4ac6d0 new file mode 100644 index 00000000000..9363e334d65 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e56de0253e4ac6d0 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600800A00\x8e\xc20\xc300\xc300\xc20\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30\xc300\xc300\x8e\xc300\xc300\xc2000\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc30\xc200\x8e\xc300\xc300\xc20\xc3000\xc30\xc3000000000\xc3000\xc30\xc3000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e575ff427148d2e8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e575ff427148d2e8 new file mode 100644 index 00000000000..24dec00e32b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e575ff427148d2e8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa600000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5b132c3dc144a1e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5b132c3dc144a1e new file mode 100644 index 00000000000..615a563ac89 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5b132c3dc144a1e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xfa0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5d52df97e83fc58 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5d52df97e83fc58 new file mode 100644 index 00000000000..b7f99f72f38 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5d52df97e83fc58 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5\xd5C0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5db93343fb3edb3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5db93343fb3edb3 new file mode 100644 index 00000000000..8c5e928e232 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5db93343fb3edb3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfb\xff\xff000000A0\xfb\xff\xff000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5ed7ad408f72801 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5ed7ad408f72801 new file mode 100644 index 00000000000..d178039c605 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e5ed7ad408f72801 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\xfac0=00\xfaay0000\xfac0=0\x84\x84\xfac0=00\xfac0=000\xfac0=0\xfaa0=0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e6337bb8e6ea554e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e6337bb8e6ea554e new file mode 100644 index 00000000000..e723a21732d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e6337bb8e6ea554e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1M00000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e67d368cf3893078 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e67d368cf3893078 new file mode 100644 index 00000000000..896452b11ba --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e67d368cf3893078 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xa300\xf6\xa300\xf6\xa300\xf60\xf60\xf6\xa300\xf6\xa300\xf60\xf60\xf60\xf6\xa300\xf60\xf600\xa300\xf6\xa300\xf60\xf60\xf600") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e69aa5e6d8347a53 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e69aa5e6d8347a53 new file mode 100644 index 00000000000..82d27bd7e9b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e69aa5e6d8347a53 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf5A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e71530363766229e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e71530363766229e new file mode 100644 index 00000000000..051c444871c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e71530363766229e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe70\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7446f3b53e5995c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7446f3b53e5995c new file mode 100644 index 00000000000..6f86d643931 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7446f3b53e5995c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2080C000d0±0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e748e617b5b662a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e748e617b5b662a8 new file mode 100644 index 00000000000..50b960eafaa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e748e617b5b662a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e76374a135069f6e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e76374a135069f6e new file mode 100644 index 00000000000..8d170054149 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e76374a135069f6e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xc7\xc7\xda0000\xc7\xc7\xc7\xc7\xc7\xda0000\xc7\xc7\xc7\xc7\xc7\xc7\xda000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7b9fcb7a1504079 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7b9fcb7a1504079 new file mode 100644 index 00000000000..461c42d5c08 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e7b9fcb7a1504079 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb50000\xf70\xf700000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e84efb19fd22e8c5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e84efb19fd22e8c5 new file mode 100644 index 00000000000..b675e896a1a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e84efb19fd22e8c5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb5000000\xf70000000000000\xf7000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e855e5042703670f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e855e5042703670f new file mode 100644 index 00000000000..7d48a762f95 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e855e5042703670f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8c144ae0d88da30 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8c144ae0d88da30 new file mode 100644 index 00000000000..2a92af09a3e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8c144ae0d88da30 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xe1\xe1\xe1\xe1A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8efc09fea15c950 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8efc09fea15c950 new file mode 100644 index 00000000000..8f5df16dcbc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e8efc09fea15c950 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc1\xc10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e983c1e2d8024577 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e983c1e2d8024577 new file mode 100644 index 00000000000..237631af517 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e983c1e2d8024577 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\x84\x84\xf9\x000\x84\xf9\x00\x01000\xf9\x00A0\x84\xf9\x0100\xf9\x0100\xf9\x0000\x84\xf9\x0100\xf9\x010000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e997f1b03f124738 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e997f1b03f124738 new file mode 100644 index 00000000000..ffa3912f4d8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e997f1b03f124738 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x81\x81\x81\x82\x81\x81\x81\x810\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8100\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9db4a86d29a8ffb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9db4a86d29a8ffb new file mode 100644 index 00000000000..8b44b1244ab --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9db4a86d29a8ffb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8390000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9f2354413be55de b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9f2354413be55de new file mode 100644 index 00000000000..78cb065bb5b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/e9f2354413be55de @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf00080000000\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8100000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea0883ad2aae25df b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea0883ad2aae25df new file mode 100644 index 00000000000..a9fe7b96566 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea0883ad2aae25df @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9fA0A0A0A0A0A0A0A0v00ڙ000000000000000000A0A0A0A0A0A0A0A0A0A0A0A0A0A0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea15bea42c0b1458 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea15bea42c0b1458 new file mode 100644 index 00000000000..58e1d9ca7bb --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea15bea42c0b1458 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea1b06dab23ae957 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea1b06dab23ae957 new file mode 100644 index 00000000000..961e4051db4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ea1b06dab23ae957 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa410002000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb3c6a1fdf621ba9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb3c6a1fdf621ba9 new file mode 100644 index 00000000000..b8ff10d147d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb3c6a1fdf621ba9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xfa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb44328c43e5510c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb44328c43e5510c new file mode 100644 index 00000000000..36030bc9db1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb44328c43e5510c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0000000000000000\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x80\x9f0000000000000000000000000000000000000000000000000\xff\xff00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb6a2a3f8b7d110d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb6a2a3f8b7d110d new file mode 100644 index 00000000000..a77272715f9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb6a2a3f8b7d110d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x85000;\xf600000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb83bbeda55f93a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb83bbeda55f93a8 new file mode 100644 index 00000000000..e1c73f7bc8a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eb83bbeda55f93a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2E00000\xc2XQ020000000000000000000000000000000000000000000000000000000000000000000000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebb875bea50d13ac b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebb875bea50d13ac new file mode 100644 index 00000000000..6b6e2a9c07a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebb875bea50d13ac @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xe8071107Ac98B00Ab1112020000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebfbe8d3148e12d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebfbe8d3148e12d3 new file mode 100644 index 00000000000..f49d6280d47 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ebfbe8d3148e12d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0000080000000000000000000000000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec0555c32a28bf01 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec0555c32a28bf01 new file mode 100644 index 00000000000..5fc07ab7588 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec0555c32a28bf01 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("s0000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec13281f833c182e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec13281f833c182e new file mode 100644 index 00000000000..c288e27a76c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec13281f833c182e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f`````````````````a0``````````````````````````````````````````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec28c543b37bcd7c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec28c543b37bcd7c new file mode 100644 index 00000000000..57d4a72d5be --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec28c543b37bcd7c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2D\xa8000@@0@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec3ce8bc0814fd37 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec3ce8bc0814fd37 new file mode 100644 index 00000000000..22573a7d6cf --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ec3ce8bc0814fd37 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2@") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ece074a67500e91f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ece074a67500e91f new file mode 100644 index 00000000000..ece78afcde1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ece074a67500e91f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000;00000000C00080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed01fc14fd793af8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed01fc14fd793af8 new file mode 100644 index 00000000000..3d6fe4414f4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed01fc14fd793af8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4100020\x800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed11854575aa49fe b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed11854575aa49fe new file mode 100644 index 00000000000..5e94740c854 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed11854575aa49fe @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xf9\x0e2A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed1cfd5aec6d31a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed1cfd5aec6d31a8 new file mode 100644 index 00000000000..7c7d150bbc9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed1cfd5aec6d31a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfaA000\xfaA000e00000\x84\xfaA000\xfaA00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed26ee7f25abe982 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed26ee7f25abe982 new file mode 100644 index 00000000000..6209dd8822a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed26ee7f25abe982 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa80000\xf90000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed5e0720bf7e1d6a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed5e0720bf7e1d6a new file mode 100644 index 00000000000..2e1a058ba02 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed5e0720bf7e1d6a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xc6\xc6\xc100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed7a993361f81acd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed7a993361f81acd new file mode 100644 index 00000000000..a74650f5980 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed7a993361f81acd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed9996cc06c7e40a b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed9996cc06c7e40a new file mode 100644 index 00000000000..f1ff80d917d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ed9996cc06c7e40a @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xfa8100\xfa2271\x84\xfa8100\xfa20000\x84\xfa2000\xfa200000\x84\xfa2000\xfa200000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edb2d198614a4d5d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edb2d198614a4d5d new file mode 100644 index 00000000000..469226fed49 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edb2d198614a4d5d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x840000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edf49fb865561e1e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edf49fb865561e1e new file mode 100644 index 00000000000..8dec5288e22 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/edf49fb865561e1e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7fc00\xa8````````````````````````````````````````````````````````````````\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee5f4b35d3ff43ef b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee5f4b35d3ff43ef new file mode 100644 index 00000000000..8f6b2f6be6b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee5f4b35d3ff43ef @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2@0\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xc6\xc6\xd1\xd1D00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee859b0be6207a08 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee859b0be6207a08 new file mode 100644 index 00000000000..8af01ef51ce --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ee859b0be6207a08 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xb0\xc10\xc6\xc90\xd50") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eef57ef8de1c568b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eef57ef8de1c568b new file mode 100644 index 00000000000..c4d4e2d0a71 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/eef57ef8de1c568b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\x9f\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfa0000\xfb00000000\xfb00000000\xff\xfa0000\xfb00000000\xfb00000000\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef0f4ac5727c5f3f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef0f4ac5727c5f3f new file mode 100644 index 00000000000..2eb72afd8f0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef0f4ac5727c5f3f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc3H\xff0000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef2084e81d2a294d b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef2084e81d2a294d new file mode 100644 index 00000000000..02f4e89578e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef2084e81d2a294d @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc000\xc000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef296d064753dd42 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef296d064753dd42 new file mode 100644 index 00000000000..f83f5049f9f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef296d064753dd42 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xfaa0=0\xfa`G00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef68162edd93c9e5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef68162edd93c9e5 new file mode 100644 index 00000000000..ffef9923708 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef68162edd93c9e5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x810") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef71fde1891bda50 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef71fde1891bda50 new file mode 100644 index 00000000000..0f42d0bd678 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef71fde1891bda50 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf6A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef9bda9e87adbdf6 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef9bda9e87adbdf6 new file mode 100644 index 00000000000..dfa609cf22c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ef9bda9e87adbdf6 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa3JapiVersionA0@\xbfA080\xffDkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efca6f02c1f797d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efca6f02c1f797d3 new file mode 100644 index 00000000000..92f3cc41317 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efca6f02c1f797d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xf6\xf6\x9f\xf6\xf6\xff\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efcd1e172071b7ff b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efcd1e172071b7ff new file mode 100644 index 00000000000..445d7940034 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/efcd1e172071b7ff @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0\x00\x10\x00\x00000\x00\x10\x9f \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xf1\xf1\xf1\xf1\xf1\xf10\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f008d8d0ab76d823 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f008d8d0ab76d823 new file mode 100644 index 00000000000..5750b1312b6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f008d8d0ab76d823 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf902\xf90200A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f015d537c55ec458 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f015d537c55ec458 new file mode 100644 index 00000000000..ef94112728d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f015d537c55ec458 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e000\xec00\xa200000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f01ff1d7756f84fd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f01ff1d7756f84fd new file mode 100644 index 00000000000..4ccb98df6b3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f01ff1d7756f84fd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\xf90 \xf90 00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f03556ff2bbaf2cf b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f03556ff2bbaf2cf new file mode 100644 index 00000000000..d3a231164c2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f03556ff2bbaf2cf @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc6\xc20000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f05f7a9adc2d4095 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f05f7a9adc2d4095 new file mode 100644 index 00000000000..3d267156c3b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f05f7a9adc2d4095 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4\xa00000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f07212dd70d382f5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f07212dd70d382f5 new file mode 100644 index 00000000000..a81ad59bb21 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f07212dd70d382f5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f0000000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0743476c37c6590 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0743476c37c6590 new file mode 100644 index 00000000000..6aa655f374b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0743476c37c6590 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbG0209\xb9\xbf\xbfA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f085b9c9fba071d8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f085b9c9fba071d8 new file mode 100644 index 00000000000..25e232c4b7f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f085b9c9fba071d8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd900\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xc4M000000000000\xd90Q000000000000000\xd900") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f091466478071ea2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f091466478071ea2 new file mode 100644 index 00000000000..ce9127d2d38 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f091466478071ea2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0969002b4db643c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0969002b4db643c new file mode 100644 index 00000000000..460f04c0ffe --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0969002b4db643c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f008") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f09787e2c0d12747 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f09787e2c0d12747 new file mode 100644 index 00000000000..857467e0032 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f09787e2c0d12747 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xf9\x800A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0cb54f6f7c56264 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0cb54f6f7c56264 new file mode 100644 index 00000000000..2b7b1dbe09f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0cb54f6f7c56264 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x8400\xfaZ000\xfaZ000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0d1fcd9532e5dad b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0d1fcd9532e5dad new file mode 100644 index 00000000000..b975a7e10ea --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f0d1fcd9532e5dad @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xa2e00000\xfb\x00\x00\x00\x00\x00\x00\x00yA0\xfb\x00\x00\x00\x00\x00\x00\x00yA00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f12b8c9c4f8d9e16 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f12b8c9c4f8d9e16 new file mode 100644 index 00000000000..d6c85b6b73c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f12b8c9c4f8d9e16 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa60000000000B00\xc10") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f18994f03cd04f6f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f18994f03cd04f6f new file mode 100644 index 00000000000..4db1d1e4a17 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f18994f03cd04f6f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\x7f\xff\xa2\x7f\xff\x7f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f1e1458b65255f36 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f1e1458b65255f36 new file mode 100644 index 00000000000..ce3a2836302 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f1e1458b65255f36 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f21d4ed67679d9b9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f21d4ed67679d9b9 new file mode 100644 index 00000000000..13d3273f086 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f21d4ed67679d9b9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf0000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f270391d6401b4ba b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f270391d6401b4ba new file mode 100644 index 00000000000..72961adae50 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f270391d6401b4ba @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc1c00080\xc1d00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f313804d4d795ef4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f313804d4d795ef4 new file mode 100644 index 00000000000..5e3b1bdbf6f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f313804d4d795ef4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f\x9f900\x9f\x9f9") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f37f9bf7a97be874 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f37f9bf7a97be874 new file mode 100644 index 00000000000..88a4abbd39c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f37f9bf7a97be874 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\xc2J0000000000\x84\xc2A0\xc2J0000000000\x840\x84\xc2C000\xc2J0000000000\x84\xc2A0\xc2J0000000000\x840\x84\xc2B008000000000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f3900306fcf37218 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f3900306fcf37218 new file mode 100644 index 00000000000..8c54af98ea5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f3900306fcf37218 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xdb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f402d1f56b5650a2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f402d1f56b5650a2 new file mode 100644 index 00000000000..367ffac9873 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f402d1f56b5650a2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84\xfac0000\xfac000\xfabX\xfa0\xfac000\xfac000\x84\x84\xfac0000\xfac00000\xfabY000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f417240aa2694777 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f417240aa2694777 new file mode 100644 index 00000000000..a34ae498ff4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f417240aa2694777 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("l000݀00\xe8\x80\xe800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4221bf11814c7e4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4221bf11814c7e4 new file mode 100644 index 00000000000..e72a60620f4 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4221bf11814c7e4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xfb") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f44323e2fe8e8ec7 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f44323e2fe8e8ec7 new file mode 100644 index 00000000000..dbb327caaf6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f44323e2fe8e8ec7 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3X\x1a00000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f468926de4bf57cd b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f468926de4bf57cd new file mode 100644 index 00000000000..bf7fb84511f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f468926de4bf57cd @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc2Xy\x7f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f47ab785e4b6efb5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f47ab785e4b6efb5 new file mode 100644 index 00000000000..144c3f5bbb1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f47ab785e4b6efb5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("_@\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c064424618cf0e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c064424618cf0e new file mode 100644 index 00000000000..b99bc7f51d2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c064424618cf0e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J00''0000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c4d1378596d1ad b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c4d1378596d1ad new file mode 100644 index 00000000000..3d86501c000 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4c4d1378596d1ad @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x81\x81\x81\xf900A080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4da053d73d4283f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4da053d73d4283f new file mode 100644 index 00000000000..bbbd243e5b2 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4da053d73d4283f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9fA0A0A0A0\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4e70c3c50d3b4d4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4e70c3c50d3b4d4 new file mode 100644 index 00000000000..1071747cfdc --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f4e70c3c50d3b4d4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbfA00A000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f539d6d7565dac43 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f539d6d7565dac43 new file mode 100644 index 00000000000..b2f58a53269 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f539d6d7565dac43 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000i000\xc200000C000d0\xc200") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f557c8001a967662 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f557c8001a967662 new file mode 100644 index 00000000000..f668c980314 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f557c8001a967662 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e0000080i00000000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5aad145f6286289 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5aad145f6286289 new file mode 100644 index 00000000000..feb39524911 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5aad145f6286289 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x80") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5acc4a823dc524c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5acc4a823dc524c new file mode 100644 index 00000000000..10b3d945396 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5acc4a823dc524c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e\U000edc3000`0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5bed6c713f596ce b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5bed6c713f596ce new file mode 100644 index 00000000000..ea8761620d9 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f5bed6c713f596ce @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xaa0010\x800\x800\x800\x800\x800\x800\x800\x800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f616afefd175df26 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f616afefd175df26 new file mode 100644 index 00000000000..4d0d9d9d926 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f616afefd175df26 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xc10\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f62ae893b48fdc38 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f62ae893b48fdc38 new file mode 100644 index 00000000000..9fbcb089820 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f62ae893b48fdc38 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\x84\x840\x84\xf9\x0100\x840\x84\xf9\x010000\xf9\x0000\x84\xf9\x0100\xf9\x0100\xf9\x0000\x84\xf9\x0100\xf9\x010000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f690db53c2cbce49 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f690db53c2cbce49 new file mode 100644 index 00000000000..985b71a1c14 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f690db53c2cbce49 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xa2J11970780C80A70A02") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6b608e206e2174f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6b608e206e2174f new file mode 100644 index 00000000000..cc138ac38be --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6b608e206e2174f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa40000\xc4\xc4\xc4\xc4\xc4\xc4\xc400\xc4\xd1\xc4\xc4\xc4\xc4\xc4\xc400") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6ca1fa82763be51 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6ca1fa82763be51 new file mode 100644 index 00000000000..933031e7481 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6ca1fa82763be51 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xd6\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xc7\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd6\xd7\xd6\xd6\xc7\xc7\xc7\xc7\xc7\xc7\xc1\xfb000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6cb11ac365951a4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6cb11ac365951a4 new file mode 100644 index 00000000000..023e409aefe --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6cb11ac365951a4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x84900900\x7f\xff9") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6efef1c6e99e5da b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6efef1c6e99e5da new file mode 100644 index 00000000000..ed0360de3db --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f6efef1c6e99e5da @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x84000000\x840000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f70709a3d511383f b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f70709a3d511383f new file mode 100644 index 00000000000..e7497be0ffa --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f70709a3d511383f @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xc0`\xc0`\xc0a0\xc0`\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f72cf33da72ff2e2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f72cf33da72ff2e2 new file mode 100644 index 00000000000..fa240ba2146 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f72cf33da72ff2e2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6e00000A0D000080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f781654f723f7727 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f781654f723f7727 new file mode 100644 index 00000000000..a26c9693e32 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f781654f723f7727 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x7f\xff\x7f\xff\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7bf3d9f80124ab2 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7bf3d9f80124ab2 new file mode 100644 index 00000000000..6e6dd0c7d03 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7bf3d9f80124ab2 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa8102090000070 0!000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c26387aef5ca5e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c26387aef5ca5e new file mode 100644 index 00000000000..1846b584cc3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c26387aef5ca5e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\xcf\xcf\xcf\xcf\xcf\xcf\xcfϡ000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c3739792afa3b1 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c3739792afa3b1 new file mode 100644 index 00000000000..25879dc9335 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f7c3739792afa3b1 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\xa0900000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f81d7a4c2f05c28c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f81d7a4c2f05c28c new file mode 100644 index 00000000000..064303f76ad --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f81d7a4c2f05c28c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e00000\xfbCA000000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f8882b377da1c743 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f8882b377da1c743 new file mode 100644 index 00000000000..5b51a4f0b16 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f8882b377da1c743 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte(";\x8a0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f88af51e6e25a098 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f88af51e6e25a098 new file mode 100644 index 00000000000..17aca02afea --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f88af51e6e25a098 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81A0A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f9d15925155ccdb9 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f9d15925155ccdb9 new file mode 100644 index 00000000000..de278873e91 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/f9d15925155ccdb9 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7fa0``````a0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa0583743b297e08 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa0583743b297e08 new file mode 100644 index 00000000000..1575eb23d29 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa0583743b297e08 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x7f\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa158ab43afdd881 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa158ab43afdd881 new file mode 100644 index 00000000000..6d1a3dfabd1 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa158ab43afdd881 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\x8100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8d6e401d166506 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8d6e401d166506 new file mode 100644 index 00000000000..dfde7f876f8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8d6e401d166506 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("Z0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8ee025131d2498 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8ee025131d2498 new file mode 100644 index 00000000000..a29f6041eb5 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa8ee025131d2498 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J000\t00000080@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa9e4d6e36fd8b04 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa9e4d6e36fd8b04 new file mode 100644 index 00000000000..0bd4497e595 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fa9e4d6e36fd8b04 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x81\x81\x81\xa2\x81\x81\x81\x810\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x810C000\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x8100") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fad50501df8468d8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fad50501df8468d8 new file mode 100644 index 00000000000..b0de1e75c07 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fad50501df8468d8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\xfbC\xff000010A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fadf92e9a5471169 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fadf92e9a5471169 new file mode 100644 index 00000000000..0e64691686d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fadf92e9a5471169 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2eǭ0\xaf00eǭ0\xaf00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb25f9e470fb4c61 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb25f9e470fb4c61 new file mode 100644 index 00000000000..e38a34bd815 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb25f9e470fb4c61 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f0\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe7\xe4\xe4\xe4\xe4\xe4\xe4\xe4\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb40b9a187b0a625 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb40b9a187b0a625 new file mode 100644 index 00000000000..13ea5815ec6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb40b9a187b0a625 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA0\xbfA0\xbfA0\xbfA0\xbfA0\xbfA0\xbfA0\xbf@0\xff\xff\xff\xff\xff\xff\xff\xffB000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb6efac9d8ccf9d3 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb6efac9d8ccf9d3 new file mode 100644 index 00000000000..488a1c6fb25 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb6efac9d8ccf9d3 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa60010\x960000000000000000\xa0\xa0\xa0\xa0\xa0\xa00\xa00\xa0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb77b0ce3bdc5160 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb77b0ce3bdc5160 new file mode 100644 index 00000000000..931c80b1e62 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb77b0ce3bdc5160 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xd9\xd9\xf7\xd9\xd9\xf7\xa200\xd9\xd9\xf7\xd9\xd9\xf7\xa200\xd9\xd9\xf7\xd9\xd9\xf7000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb976f117daea11c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb976f117daea11c new file mode 100644 index 00000000000..e3dd5e7608d --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fb976f117daea11c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xc3A00\xc3A00\xa6\xc3A00000000\xc3A0000000\xc3A0000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbc96b28a8a7171 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbc96b28a8a7171 new file mode 100644 index 00000000000..fc860aacd6a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbc96b28a8a7171 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0\r\r\r\r\r\r\r\r00A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbcc13fbc666d6e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbcc13fbc666d6e new file mode 100644 index 00000000000..3f66e9d1134 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbbcc13fbc666d6e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2e魰00000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbd68834c9062e9b b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbd68834c9062e9b new file mode 100644 index 00000000000..f2363d30cc6 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbd68834c9062e9b @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe6\xe7\xe4\xe4\xe4\xe4\xe4\xe4\xe4\xe7\xe7\xe7\xe7\xe7\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbfe57fe8412c248 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbfe57fe8412c248 new file mode 100644 index 00000000000..41e8b062fc3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fbfe57fe8412c248 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa4001020\xce\xce\xce\xce\xce00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc37a0cc6f7f93af b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc37a0cc6f7f93af new file mode 100644 index 00000000000..1fa82d91530 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc37a0cc6f7f93af @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x84\x00\x00\x00\x01A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc4fed5cf1340b7c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc4fed5cf1340b7c new file mode 100644 index 00000000000..10e0707c3d8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc4fed5cf1340b7c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xf9\x80\x00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc62bfa6eaa68c1c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc62bfa6eaa68c1c new file mode 100644 index 00000000000..f8b212ec5c0 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fc62bfa6eaa68c1c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte(";\xfe0000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fcb47ed59cd7a682 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fcb47ed59cd7a682 new file mode 100644 index 00000000000..bfb36c5c869 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fcb47ed59cd7a682 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xd70\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fccb4d052ef32dfb b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fccb4d052ef32dfb new file mode 100644 index 00000000000..2d11d928b01 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fccb4d052ef32dfb @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1\x820\x82\x820\xa100\xa1000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd117b868008bb64 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd117b868008bb64 new file mode 100644 index 00000000000..64c7dcd4210 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd117b868008bb64 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xc2H00000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd1d894dd9e09352 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd1d894dd9e09352 new file mode 100644 index 00000000000..8e27e2eb7ae --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd1d894dd9e09352 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\x9f\xc3A0\xc3A0\xc3A0\x9f\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\x9f\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xff\xc3A0\xc3A0\xff\xc3A0\xc3A0\xc3A0\xc3A0\xc3A0\xff\xc3A0\xc3A0\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd5e7e7c4db744a8 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd5e7e7c4db744a8 new file mode 100644 index 00000000000..12dfc56d33c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd5e7e7c4db744a8 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xd3\xd3JapiVersionA0DkindA0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd694eec3357e7a5 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd694eec3357e7a5 new file mode 100644 index 00000000000..408510d18c8 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd694eec3357e7a5 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xfa0000:000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd91770d8a3c3474 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd91770d8a3c3474 new file mode 100644 index 00000000000..66b94ebf57f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd91770d8a3c3474 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\x84\xd900\xd900808") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd918cc08f89304c b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd918cc08f89304c new file mode 100644 index 00000000000..2401a05af2a --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fd918cc08f89304c @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2JapiVersion\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\x81\xc10A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fda4a0d98355999e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fda4a0d98355999e new file mode 100644 index 00000000000..89ff9009a03 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fda4a0d98355999e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa200\xb1\xb10000000000000000000000000000000000000000000000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb11bbde86b3a48 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb11bbde86b3a48 new file mode 100644 index 00000000000..c16f102245f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb11bbde86b3a48 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xc3Q\x00\x00\x0000000000000000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb89bc248511faa b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb89bc248511faa new file mode 100644 index 00000000000..d3babf1261c --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdb89bc248511faa @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa6\xa6000000000000000\xf810\xf820\xf800\xf800") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdc899c15feecc72 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdc899c15feecc72 new file mode 100644 index 00000000000..db00646349b --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fdc899c15feecc72 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\xbft\U0008a2bf00000000000000000\xff000") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe24f332ba32924e b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe24f332ba32924e new file mode 100644 index 00000000000..e1755d1bcf3 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe24f332ba32924e @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa1dϡϡ\xa1dϡϡ0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe6d812fbda6b1f4 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe6d812fbda6b1f4 new file mode 100644 index 00000000000..96be10ffcff --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/fe6d812fbda6b1f4 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J00\n\n\n\n00000A00") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feb5ad1cbffc9a64 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feb5ad1cbffc9a64 new file mode 100644 index 00000000000..13ce867764e --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feb5ad1cbffc9a64 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2\x9f\xff0080") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feee500cef1cc457 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feee500cef1cc457 new file mode 100644 index 00000000000..34947784b39 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/feee500cef1cc457 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xbf000000\xff") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff1baf4b448e5876 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff1baf4b448e5876 new file mode 100644 index 00000000000..2a68977c20f --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff1baf4b448e5876 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2J0000000000\x9f\x9f@@@@@\xff@@@@@@@@@@\xff@0") diff --git a/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff7e316a5a0fc914 b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff7e316a5a0fc914 new file mode 100644 index 00000000000..62598fb8bf7 --- /dev/null +++ b/test/fuzz/cbor/testdata/fuzz/FuzzDecodeAllocations/ff7e316a5a0fc914 @@ -0,0 +1,2 @@ +go test fuzz v1 +[]byte("\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00B000@0\xffB00\xa2A0\xbfA00B100A10B000@0\xffB000")