Hstore: Query speedups with Gin index
Hey everyone,
I'm looking for feedback on a contrib/hstore patch.
We've been experiencing slow "@>" queries involving an hstore column that's
covered by a Gin index. At the current postgresql git HEAD, the hstore <->
gin interface produces the following text items to be indexed:
hstore: "'a'=>'1234', 'b'=>'test'"
Produces indexed text items: "Ka", "V1234", "Kb", "Vtest"
For the size of our production table (10s of millions of rows), I observed
significant query speedups by changing the index strategy to the following:
hstore: "'a'=>'1234', 'b'=>'test'"
Produces indexed text items: "Ka", "KaV1234", "Kb", "KbVtest"
The combined entry is used to support "contains (@>)" queries, and the key
only item is used to support "key contains (?)" queries. This change seems
to help especially with hstore keys that have high cardinalities. Downsides
of this change is that it requires an index rebuild, and the index will be
larger in size.
Patch attached. Any thoughts on this change?
Thanks,
Blake
Attachments:
hstore_gin_speedup.patchapplication/octet-stream; name=hstore_gin_speedup.patchDownload
From 80064e90355a443096d16c7310722008315918a2 Mon Sep 17 00:00:00 2001
From: Blake Smith <blakesmith0@gmail.com>
Date: Tue, 20 Aug 2013 19:08:01 -0500
Subject: [PATCH] Use one index entry for a key/value pair
---
contrib/hstore/hstore_gin.c | 87 ++++++++++++++++++++++++++++++++++++++-------
1 file changed, 75 insertions(+), 12 deletions(-)
diff --git a/contrib/hstore/hstore_gin.c b/contrib/hstore/hstore_gin.c
index 2007801..e45a244 100644
--- a/contrib/hstore/hstore_gin.c
+++ b/contrib/hstore/hstore_gin.c
@@ -24,7 +24,6 @@
PG_FUNCTION_INFO_V1(gin_extract_hstore);
Datum gin_extract_hstore(PG_FUNCTION_ARGS);
-/* Build an indexable text value */
static text *
makeitem(char *str, int len, char flag)
{
@@ -41,6 +40,73 @@ makeitem(char *str, int len, char flag)
return item;
}
+/* Build an indexable text value */
+static text *
+makeCombinedItem(HEntry *hsent, char *ptr, int i) {
+ int keylen;
+ int vallen;
+ int len;
+ int valflag;
+ text *item;
+
+ keylen = HS_KEYLEN(hsent, i);
+
+ if (HS_VALISNULL(hsent, i)) {
+ valflag = NULLFLAG;
+ vallen = 0;
+ } else {
+ valflag = VALFLAG;
+ vallen = HS_VALLEN(hsent, i);
+ }
+
+ len = keylen + vallen + 2;
+ item = (text *) palloc(len);
+ SET_VARSIZE(item, len);
+
+ *VARDATA(item) = KEYFLAG;
+
+ memcpy(VARDATA(item) + 1,
+ HS_KEY(hsent, ptr, i), keylen);
+
+ *(VARDATA(item) + 1 + keylen) = valflag;
+
+ memcpy(VARDATA(item) + 2 + keylen,
+ HS_VAL(hsent, ptr, i), vallen);
+
+ return item;
+}
+
+static Datum
+gin_extract_hstore_contains(PG_FUNCTION_ARGS)
+{
+ HStore *hs = PG_GETARG_HS(0);
+ int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
+ Datum *entries = NULL;
+ HEntry *hsent = ARRPTR(hs);
+ char *ptr = STRPTR(hs);
+ int count = HS_COUNT(hs);
+ int i;
+
+ *nentries = count;
+ if (count)
+ entries = (Datum *) palloc(sizeof(Datum) * count);
+
+ for (i = 0; i < count; ++i)
+ {
+ text *item;
+
+ item = makeCombinedItem(hsent, ptr, i);
+ entries[i] = PointerGetDatum(item);
+ }
+
+ PG_RETURN_POINTER(entries);
+}
+
+/*
+ * Called during indexing. This produces both the combined key/value
+ * index text for contains queries, as well as the key only query for
+ * key contains queries
+ */
Datum
gin_extract_hstore(PG_FUNCTION_ARGS)
{
@@ -58,18 +124,15 @@ gin_extract_hstore(PG_FUNCTION_ARGS)
for (i = 0; i < count; ++i)
{
- text *item;
+ text *combined;
+ text *keyonly;
- item = makeitem(HS_KEY(hsent, ptr, i), HS_KEYLEN(hsent, i),
- KEYFLAG);
- entries[2 * i] = PointerGetDatum(item);
+ combined = makeCombinedItem(hsent, ptr, i);
+ keyonly = makeitem(HS_KEY(hsent, ptr, i), HS_KEYLEN(hsent, i),
+ KEYFLAG);
- if (HS_VALISNULL(hsent, i))
- item = makeitem(NULL, 0, NULLFLAG);
- else
- item = makeitem(HS_VAL(hsent, ptr, i), HS_VALLEN(hsent, i),
- VALFLAG);
- entries[2 * i + 1] = PointerGetDatum(item);
+ entries[2 * i] = PointerGetDatum(combined);
+ entries[2 * i + 1] = PointerGetDatum(keyonly);
}
PG_RETURN_POINTER(entries);
@@ -90,7 +153,7 @@ gin_extract_hstore_query(PG_FUNCTION_ARGS)
{
/* Query is an hstore, so just apply gin_extract_hstore... */
entries = (Datum *)
- DatumGetPointer(DirectFunctionCall2(gin_extract_hstore,
+ DatumGetPointer(DirectFunctionCall2(gin_extract_hstore_contains,
PG_GETARG_DATUM(0),
PointerGetDatum(nentries)));
/* ... except that "contains {}" requires a full index scan */
--
1.7.12.4 (Apple Git-37)
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <blakesmith0@gmail.com> wrote:
We've been experiencing slow "@>" queries involving an hstore column that's
covered by a Gin index. At the current postgresql git HEAD, the hstore <->
gin interface produces the following text items to be indexed:hstore: "'a'=>'1234', 'b'=>'test'"
Produces indexed text items: "Ka", "V1234", "Kb", "Vtest"For the size of our production table (10s of millions of rows), I observed
significant query speedups by changing the index strategy to the following:
What is the order of the speedup?
hstore: "'a'=>'1234', 'b'=>'test'"
Produces indexed text items: "Ka", "KaV1234", "Kb", "KbVtest"
I am not a gin expert, but do you see the same speedup for tables with
a lower number of rows, or even a degradation in performance?
The combined entry is used to support "contains (@>)" queries, and the key
only item is used to support "key contains (?)" queries. This change seems
to help especially with hstore keys that have high cardinalities. Downsides
of this change is that it requires an index rebuild, and the index will be
larger in size.
Index rebuild would be a problem only for minor releases, this patch
would be applied only on the current master branch for 9.4 and above.
Patch attached. Any thoughts on this change?
Please add your patch to the next commit fest that will begin in 3
weeks so as you could get more formal review.
https://commitfest.postgresql.org/action/commitfest_view?id=19
Regards,
--
Michael
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <blakesmith0@gmail.com> wrote:
The combined entry is used to support "contains (@>)" queries, and the key
only item is used to support "key contains (?)" queries. This change seems
to help especially with hstore keys that have high cardinalities. Downsides
of this change is that it requires an index rebuild, and the index will be
larger in size.
Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably will be
future releases in which we are willing to break storage compatibility,
a contrib module doesn't get to dictate that.
What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to make hstore
offer two different GIN index opclasses, one that works the traditional
way and one that works this way.
Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.
regards, tom lane
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
Michael, take a look on http://obartunov.livejournal.com/171959.html
As for the indexing stuff we already thought many times about key&value
mixing, but real solution, probably, could come from spgist and gin
combination. I mean, spgist (suffix array) instead of btree for avoiding
key duplication, which is real stopper for key.value mixing, especially,
for deep nesting structures. We'll research further and probably will
develop a prototype of such hybrid search tree.
Oleg
On Mon, Aug 26, 2013 at 6:11 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
Show quoted text
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <blakesmith0@gmail.com>
wrote:
The combined entry is used to support "contains (@>)" queries, and the
key
only item is used to support "key contains (?)" queries. This change
seems
to help especially with hstore keys that have high cardinalities.
Downsides
of this change is that it requires an index rebuild, and the index will
be
larger in size.
Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably will be
future releases in which we are willing to break storage compatibility,
a contrib module doesn't get to dictate that.What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to make hstore
offer two different GIN index opclasses, one that works the traditional
way and one that works this way.Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.regards, tom lane
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
On Sun, Aug 25, 2013 at 10:11:50PM -0400, Tom Lane wrote:
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <blakesmith0@gmail.com> wrote:
The combined entry is used to support "contains (@>)" queries, and the key
only item is used to support "key contains (?)" queries. This change seems
to help especially with hstore keys that have high cardinalities. Downsides
of this change is that it requires an index rebuild, and the index will be
larger in size.Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably will be
future releases in which we are willing to break storage compatibility,
a contrib module doesn't get to dictate that.What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to make hstore
offer two different GIN index opclasses, one that works the traditional
way and one that works this way.Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.
We can disallow in-place upgrades for clusters that use certain contrib
modules --- we have done that in the past.
--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com
+ It's impossible for everything to be true. +
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
On 2013-08-28 13:31:22 -0400, Bruce Momjian wrote:
On Sun, Aug 25, 2013 at 10:11:50PM -0400, Tom Lane wrote:
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <blakesmith0@gmail.com> wrote:
The combined entry is used to support "contains (@>)" queries, and the key
only item is used to support "key contains (?)" queries. This change seems
to help especially with hstore keys that have high cardinalities. Downsides
of this change is that it requires an index rebuild, and the index will be
larger in size.Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably will be
future releases in which we are willing to break storage compatibility,
a contrib module doesn't get to dictate that.What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to make hstore
offer two different GIN index opclasses, one that works the traditional
way and one that works this way.Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.We can disallow in-place upgrades for clusters that use certain contrib
modules --- we have done that in the past.
But that really cannot be acceptable for hstore. The probably most
widely used extension there is.
Greetings,
Andres Freund
--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
Thanks for the feedback everyone. I've attached the patch that we are now
running in production to service our hstore include queries. We rebuilt the
index to account for the on-disk incompatibility. I've submitted the patch
to commitfest here:
https://commitfest.postgresql.org/action/patch_view?id=1203
Michael: I don't have a formal benchmark, but several of our worst queries
went from 10-20 seconds per query down to 50-400 ms. These are numbers
we've seen when testing real production queries against our production
dataset with real world access patterns.
Oleg: Thanks for your thoughts on this change. As for the spgist / gin work
you're doing, is there anything you need help with or are you still in the
research phase? I'd love to help get something more robust merged into
mainline if you think there's collaborative work to be done (even if it's
only user testing).
Thanks,
Blake
On Wed, Aug 28, 2013 at 12:40 PM, Andres Freund <andres@2ndquadrant.com>wrote:
On 2013-08-28 13:31:22 -0400, Bruce Momjian wrote:
On Sun, Aug 25, 2013 at 10:11:50PM -0400, Tom Lane wrote:
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <blakesmith0@gmail.com>
wrote:
The combined entry is used to support "contains (@>)" queries, and
the key
only item is used to support "key contains (?)" queries. This
change seems
to help especially with hstore keys that have high cardinalities.
Downsides
of this change is that it requires an index rebuild, and the index
will be
larger in size.
Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably will be
future releases in which we are willing to break storage compatibility,
a contrib module doesn't get to dictate that.What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to make hstore
offer two different GIN index opclasses, one that works the traditional
way and one that works this way.Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.We can disallow in-place upgrades for clusters that use certain contrib
modules --- we have done that in the past.But that really cannot be acceptable for hstore. The probably most
widely used extension there is.Greetings,
Andres Freund
--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
--
Blake Smith
http://blakesmith.me
@blakesmith
Attachments:
hstore_gin_speedup.patchapplication/octet-stream; name=hstore_gin_speedup.patchDownload
From d1ae672306e04b2ae3e32cc289d81ea55301e2ff Mon Sep 17 00:00:00 2001
From: Blake Smith <blakesmith0@gmail.com>
Date: Tue, 20 Aug 2013 19:08:01 -0500
Subject: [PATCH] Use one index entry for a key/value pair
---
contrib/hstore/hstore_gin.c | 87 ++++++++++++++++++++++++++++++++++++++-------
1 file changed, 75 insertions(+), 12 deletions(-)
diff --git a/contrib/hstore/hstore_gin.c b/contrib/hstore/hstore_gin.c
index 2007801..7e4372e 100644
--- a/contrib/hstore/hstore_gin.c
+++ b/contrib/hstore/hstore_gin.c
@@ -24,7 +24,6 @@
PG_FUNCTION_INFO_V1(gin_extract_hstore);
Datum gin_extract_hstore(PG_FUNCTION_ARGS);
-/* Build an indexable text value */
static text *
makeitem(char *str, int len, char flag)
{
@@ -41,6 +40,73 @@ makeitem(char *str, int len, char flag)
return item;
}
+/* Build an indexable text value */
+static text *
+makeCombinedItem(HEntry *hsent, char *ptr, int i) {
+ int keylen;
+ int vallen;
+ int len;
+ int valflag;
+ text *item;
+
+ keylen = HS_KEYLEN(hsent, i);
+
+ if (HS_VALISNULL(hsent, i)) {
+ valflag = NULLFLAG;
+ vallen = 0;
+ } else {
+ valflag = VALFLAG;
+ vallen = HS_VALLEN(hsent, i);
+ }
+
+ len = keylen + vallen + VARHDRSZ + 2;
+ item = (text *) palloc(len);
+ SET_VARSIZE(item, len);
+
+ *VARDATA(item) = KEYFLAG;
+
+ memcpy(VARDATA(item) + 1,
+ HS_KEY(hsent, ptr, i), keylen);
+
+ *(VARDATA(item) + 1 + keylen) = valflag;
+
+ memcpy(VARDATA(item) + 2 + keylen,
+ HS_VAL(hsent, ptr, i), vallen);
+
+ return item;
+}
+
+static Datum
+gin_extract_hstore_contains(PG_FUNCTION_ARGS)
+{
+ HStore *hs = PG_GETARG_HS(0);
+ int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
+ Datum *entries = NULL;
+ HEntry *hsent = ARRPTR(hs);
+ char *ptr = STRPTR(hs);
+ int count = HS_COUNT(hs);
+ int i;
+
+ *nentries = count;
+ if (count)
+ entries = (Datum *) palloc(sizeof(Datum) * count);
+
+ for (i = 0; i < count; ++i)
+ {
+ text *item;
+
+ item = makeCombinedItem(hsent, ptr, i);
+ entries[i] = PointerGetDatum(item);
+ }
+
+ PG_RETURN_POINTER(entries);
+}
+
+/*
+ * Called during indexing. This produces both the combined key/value
+ * index text for contains queries, as well as the key only query for
+ * key contains queries
+ */
Datum
gin_extract_hstore(PG_FUNCTION_ARGS)
{
@@ -58,18 +124,15 @@ gin_extract_hstore(PG_FUNCTION_ARGS)
for (i = 0; i < count; ++i)
{
- text *item;
+ text *combined;
+ text *keyonly;
- item = makeitem(HS_KEY(hsent, ptr, i), HS_KEYLEN(hsent, i),
- KEYFLAG);
- entries[2 * i] = PointerGetDatum(item);
+ combined = makeCombinedItem(hsent, ptr, i);
+ keyonly = makeitem(HS_KEY(hsent, ptr, i), HS_KEYLEN(hsent, i),
+ KEYFLAG);
- if (HS_VALISNULL(hsent, i))
- item = makeitem(NULL, 0, NULLFLAG);
- else
- item = makeitem(HS_VAL(hsent, ptr, i), HS_VALLEN(hsent, i),
- VALFLAG);
- entries[2 * i + 1] = PointerGetDatum(item);
+ entries[2 * i] = PointerGetDatum(combined);
+ entries[2 * i + 1] = PointerGetDatum(keyonly);
}
PG_RETURN_POINTER(entries);
@@ -90,7 +153,7 @@ gin_extract_hstore_query(PG_FUNCTION_ARGS)
{
/* Query is an hstore, so just apply gin_extract_hstore... */
entries = (Datum *)
- DatumGetPointer(DirectFunctionCall2(gin_extract_hstore,
+ DatumGetPointer(DirectFunctionCall2(gin_extract_hstore_contains,
PG_GETARG_DATUM(0),
PointerGetDatum(nentries)));
/* ... except that "contains {}" requires a full index scan */
--
1.7.12.4 (Apple Git-37)
On Tue, 2013-09-03 at 09:24 -0500, Blake Smith wrote:
Thanks for the feedback everyone. I've attached the patch that we are
now running in production to service our hstore include queries. We
rebuilt the index to account for the on-disk incompatibility. I've
submitted the patch to commitfest
here: https://commitfest.postgresql.org/action/patch_view?id=1203
I'm getting the attached failure from the hstore regression test.
Attachments:
regression.diffstext/x-patch; charset=UTF-8; name=regression.diffsDownload
*** /var/lib/jenkins/jobs/postgresql_commitfest_world/workspace/contrib/hstore/expected/hstore.out 2013-08-24 01:24:41.000000000 +0000
--- /var/lib/jenkins/jobs/postgresql_commitfest_world/workspace/contrib/hstore/results/hstore.out 2013-09-03 22:05:34.000000000 +0000
***************
*** 1338,1345 ****
--- 1338,5586 ----
drop index hidx;
create index hidx on testhstore using gin (h);
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc098
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc070
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc098
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc070
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc030
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc040
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc030
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc070
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc030
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc098
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc078
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc048
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc060
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0b8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc078
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc030
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf08
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc010
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc000
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc050
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf20
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdf8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbec8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc028
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe18
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf80
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc020
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf00
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfa0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbff0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbde0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe30
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdd0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbeb0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf98
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfe8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe40
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf28
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf78
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfc8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc018
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc068
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe90
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbed0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf68
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbfb8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc008
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc058
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfc0a8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe60
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe58
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf48
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbea0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbef0
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe10
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbe50
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbee8
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf38
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf88
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbd70
+ WARNING: problem in alloc set Gin build temporary context for user-defined function: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbdc0
set enable_seqscan=off;
select count(*) from testhstore where h @> 'wait=>NULL';
+ WARNING: problem in alloc set ExecutorState: detected write past chunk end in block 0x1dffcd0, chunk 0x1e029f0
+ WARNING: problem in alloc set MessageContext: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
+ WARNING: problem in alloc set MessageContext: detected write past chunk end in block 0x1dfbcc0, chunk 0x1dfbf18
count
-------
1
***************
*** 1352,1357 ****
--- 5593,5601 ----
(1 row)
select count(*) from testhstore where h @> 'wait=>CC, public=>t';
+ WARNING: problem in alloc set ExecutorState: detected write past chunk end in block 0x1dffcd0, chunk 0x1e02a18
+ WARNING: problem in alloc set MessageContext: detected write past chunk end in block 0x1e0afa0, chunk 0x1e0c100
+ WARNING: problem in alloc set MessageContext: detected write past chunk end in block 0x1e0afa0, chunk 0x1e0c100
count
-------
2
======================================================================
Hi Peter,
Thanks for checking the tests. I wasn't able to duplicate your test
results. Did you run the hstore regression tests with the revised patch I
attached in the thread? Attached is the output I got with the latest patch
applied.
Thanks!
Blake
On Tue, Sep 3, 2013 at 8:04 PM, Peter Eisentraut <peter_e@gmx.net> wrote:
On Tue, 2013-09-03 at 09:24 -0500, Blake Smith wrote:
Thanks for the feedback everyone. I've attached the patch that we are
now running in production to service our hstore include queries. We
rebuilt the index to account for the on-disk incompatibility. I've
submitted the patch to commitfest
here: https://commitfest.postgresql.org/action/patch_view?id=1203I'm getting the attached failure from the hstore regression test.
--
Blake Smith
http://blakesmith.me
@blakesmith
Attachments:
regressions.diffapplication/octet-stream; name=regressions.diffDownload
Blakes-MacBook-Air-2:hstore blake$ make check
make -C ../../src/test/regress pg_regress
make -C ../../../src/port all
make -C ../backend submake-errcodes
make[3]: Nothing to be done for `submake-errcodes'.
make -C ../../../src/common all
make -C ../backend submake-errcodes
make[3]: Nothing to be done for `submake-errcodes'.
../../src/test/regress/pg_regress --inputdir=. --temp-install=./tmp_check --top-builddir=../.. --extra-install=contrib/hstore --dbname=contrib_regression hstore
============== creating temporary installation ==============
============== initializing database system ==============
============== starting postmaster ==============
running on port 57632 with PID 88930
============== creating database "contrib_regression" ==============
CREATE DATABASE
ALTER DATABASE
============== running regression test queries ==============
test hstore ... ok
============== shutting down postmaster ==============
=====================
All 1 tests passed.
=====================
Blake,
I think it's better to implement this patch as a separate opclass, so users
will have option to choose indexing.
Oleg
On Tue, Sep 3, 2013 at 6:24 PM, Blake Smith <blakesmith0@gmail.com> wrote:
Show quoted text
Thanks for the feedback everyone. I've attached the patch that we are now
running in production to service our hstore include queries. We rebuilt the
index to account for the on-disk incompatibility. I've submitted the patch
to commitfest here:
https://commitfest.postgresql.org/action/patch_view?id=1203Michael: I don't have a formal benchmark, but several of our worst queries
went from 10-20 seconds per query down to 50-400 ms. These are numbers
we've seen when testing real production queries against our production
dataset with real world access patterns.
Oleg: Thanks for your thoughts on this change. As for the spgist / gin
work you're doing, is there anything you need help with or are you still in
the research phase? I'd love to help get something more robust merged into
mainline if you think there's collaborative work to be done (even if it's
only user testing).Thanks,
Blake
On Wed, Aug 28, 2013 at 12:40 PM, Andres Freund <andres@2ndquadrant.com>wrote:
On 2013-08-28 13:31:22 -0400, Bruce Momjian wrote:
On Sun, Aug 25, 2013 at 10:11:50PM -0400, Tom Lane wrote:
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <
blakesmith0@gmail.com> wrote:
The combined entry is used to support "contains (@>)" queries, and
the key
only item is used to support "key contains (?)" queries. This
change seems
to help especially with hstore keys that have high cardinalities.
Downsides
of this change is that it requires an index rebuild, and the index
will be
larger in size.
Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably willbe
future releases in which we are willing to break storage
compatibility,
a contrib module doesn't get to dictate that.
What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to make hstore
offer two different GIN index opclasses, one that works thetraditional
way and one that works this way.
Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.We can disallow in-place upgrades for clusters that use certain contrib
modules --- we have done that in the past.But that really cannot be acceptable for hstore. The probably most
widely used extension there is.Greetings,
Andres Freund
--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services--
Blake Smith
http://blakesmith.me
@blakesmith--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
On 9/5/13 2:42 PM, Blake Smith wrote:
Thanks for checking the tests. I wasn't able to duplicate your test
results. Did you run the hstore regression tests with the revised patch
I attached in the thread? Attached is the output I got with the latest
patch applied.
See
http://pgci.eisentraut.org/jenkins/job/postgresql_commitfest_world/46/consoleFull
Perhaps you didn't build with --enable-cassert?
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
Thanks for getting back to me about this change Oleg. I took your advice
and reworked the patch by adding a new hstore gin opclass
(gin_hstore_combined_ops) and leaving the functionality of the default
hstore gin opclass the same. This should prevent the on-disk compatibility
issues from the first patch, and allow users to select the different
indexing method when they build the index. The hstore regression suite is
passing for me locally with the --enable-cassert configure flag. Please let
me know what you think and if there is any other work that would need to be
done (style cleanups, updating documentation, etc) to get this merged.
Thanks!
Blake
On Fri, Sep 6, 2013 at 1:47 PM, Oleg Bartunov <obartunov@gmail.com> wrote:
Blake,
I think it's better to implement this patch as a separate opclass, so
users will have option to choose indexing.Oleg
On Tue, Sep 3, 2013 at 6:24 PM, Blake Smith <blakesmith0@gmail.com> wrote:
Thanks for the feedback everyone. I've attached the patch that we are now
running in production to service our hstore include queries. We rebuilt the
index to account for the on-disk incompatibility. I've submitted the patch
to commitfest here:
https://commitfest.postgresql.org/action/patch_view?id=1203Michael: I don't have a formal benchmark, but several of our worst
queries went from 10-20 seconds per query down to 50-400 ms. These are
numbers we've seen when testing real production queries against our
production dataset with real world access patterns.
Oleg: Thanks for your thoughts on this change. As for the spgist / gin
work you're doing, is there anything you need help with or are you still in
the research phase? I'd love to help get something more robust merged into
mainline if you think there's collaborative work to be done (even if it's
only user testing).Thanks,
Blake
On Wed, Aug 28, 2013 at 12:40 PM, Andres Freund <andres@2ndquadrant.com>wrote:
On 2013-08-28 13:31:22 -0400, Bruce Momjian wrote:
On Sun, Aug 25, 2013 at 10:11:50PM -0400, Tom Lane wrote:
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <
blakesmith0@gmail.com> wrote:
The combined entry is used to support "contains (@>)" queries,
and the key
only item is used to support "key contains (?)" queries. This
change seems
to help especially with hstore keys that have high cardinalities.
Downsides
of this change is that it requires an index rebuild, and the
index will be
larger in size.
Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably willbe
future releases in which we are willing to break storage
compatibility,
a contrib module doesn't get to dictate that.
What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to makehstore
offer two different GIN index opclasses, one that works the
traditional
way and one that works this way.
Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.We can disallow in-place upgrades for clusters that use certain contrib
modules --- we have done that in the past.But that really cannot be acceptable for hstore. The probably most
widely used extension there is.Greetings,
Andres Freund
--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services--
Blake Smith
http://blakesmith.me
@blakesmith--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
--
Blake Smith
http://blakesmith.me
@blakesmith
Attachments:
0001-Add-gin_hstore_combined_ops-hstore-indexing-opclass.patchapplication/octet-stream; name=0001-Add-gin_hstore_combined_ops-hstore-indexing-opclass.patchDownload
From eb2011413eb96147f6c7b7ee30268fb26af932e4 Mon Sep 17 00:00:00 2001
From: Blake Smith <blakesmith0@gmail.com>
Date: Mon, 9 Sep 2013 09:31:42 -0500
Subject: [PATCH] Add 'gin_hstore_combined_ops' hstore indexing opclass.
This gin indexing strategy produces a combined key and value index entry
to support @> queries, and a key only index entry to support ? queries.
This can produce a significant speedup in @> queries, at the cost of a
larger index size.
---
contrib/hstore/expected/hstore.out | 73 +++++++++++++++++++
contrib/hstore/hstore--1.1.sql | 25 +++++++
contrib/hstore/hstore_gin.c | 140 +++++++++++++++++++++++++++++++++++--
contrib/hstore/sql/hstore.sql | 16 +++++
4 files changed, 247 insertions(+), 7 deletions(-)
diff --git a/contrib/hstore/expected/hstore.out b/contrib/hstore/expected/hstore.out
index 2114143..7668ded 100644
--- a/contrib/hstore/expected/hstore.out
+++ b/contrib/hstore/expected/hstore.out
@@ -1437,6 +1437,79 @@ select distinct * from (values (hstore '' || ''),('')) v(h);
(1 row)
set enable_sort = true;
+-- gin combined opclass
+drop index hidx;
+create index hidx on testhstore using gin (h gin_hstore_combined_ops);
+set enable_seqscan=off;
+select count(*) from testhstore where h @> 'wait=>NULL';
+ count
+-------
+ 1
+(1 row)
+
+select count(*) from testhstore where h @> 'wait=>CC';
+ count
+-------
+ 15
+(1 row)
+
+select count(*) from testhstore where h @> 'wait=>CC, public=>t';
+ count
+-------
+ 2
+(1 row)
+
+select count(*) from testhstore where h ? 'public';
+ count
+-------
+ 194
+(1 row)
+
+select count(*) from testhstore where h ?| ARRAY['public','disabled'];
+ count
+-------
+ 337
+(1 row)
+
+select count(*) from testhstore where h ?& ARRAY['public','disabled'];
+ count
+-------
+ 42
+(1 row)
+
+select count(*) from (select (each(h)).key from testhstore) as wow ;
+ count
+-------
+ 4781
+(1 row)
+
+select key, count(*) from (select (each(h)).key from testhstore) as wow group by key order by count desc, key;
+ key | count
+-----------+-------
+ line | 884
+ query | 207
+ pos | 203
+ node | 202
+ space | 197
+ status | 195
+ public | 194
+ title | 190
+ wait | 190
+ org | 189
+ user | 189
+ coauthors | 188
+ disabled | 185
+ indexed | 184
+ cleaned | 180
+ bad | 179
+ date | 179
+ world | 176
+ state | 172
+ subtitle | 169
+ auth | 168
+ abstract | 161
+(22 rows)
+
-- btree
drop index hidx;
create index hidx on testhstore using btree (h);
diff --git a/contrib/hstore/hstore--1.1.sql b/contrib/hstore/hstore--1.1.sql
index f415a72..af8e58b 100644
--- a/contrib/hstore/hstore--1.1.sql
+++ b/contrib/hstore/hstore--1.1.sql
@@ -535,3 +535,28 @@ AS
FUNCTION 3 gin_extract_hstore_query(internal, internal, int2, internal, internal),
FUNCTION 4 gin_consistent_hstore(internal, int2, internal, int4, internal, internal),
STORAGE text;
+
+-- Gin combined opclass
+
+CREATE FUNCTION gin_extract_hstore_combined(internal, internal)
+RETURNS internal
+AS 'MODULE_PATHNAME'
+LANGUAGE C IMMUTABLE STRICT;
+
+CREATE FUNCTION gin_extract_hstore_query_combined(internal, internal, int2, internal, internal)
+RETURNS internal
+AS 'MODULE_PATHNAME'
+LANGUAGE C IMMUTABLE STRICT;
+
+CREATE OPERATOR CLASS gin_hstore_combined_ops
+FOR TYPE hstore USING gin
+AS
+ OPERATOR 7 @>,
+ OPERATOR 9 ?(hstore,text),
+ OPERATOR 10 ?|(hstore,text[]),
+ OPERATOR 11 ?&(hstore,text[]),
+ FUNCTION 1 bttextcmp(text,text),
+ FUNCTION 2 gin_extract_hstore_combined(internal, internal),
+ FUNCTION 3 gin_extract_hstore_query_combined(internal, internal, int2, internal, internal),
+ FUNCTION 4 gin_consistent_hstore(internal, int2, internal, int4, internal, internal),
+ STORAGE text;
diff --git a/contrib/hstore/hstore_gin.c b/contrib/hstore/hstore_gin.c
index 2007801..f6c27fd 100644
--- a/contrib/hstore/hstore_gin.c
+++ b/contrib/hstore/hstore_gin.c
@@ -75,12 +75,8 @@ gin_extract_hstore(PG_FUNCTION_ARGS)
PG_RETURN_POINTER(entries);
}
-PG_FUNCTION_INFO_V1(gin_extract_hstore_query);
-Datum gin_extract_hstore_query(PG_FUNCTION_ARGS);
-
-Datum
-gin_extract_hstore_query(PG_FUNCTION_ARGS)
-{
+static Datum
+extract_hstore_query(PG_FUNCTION_ARGS, Datum (*extract_fn)(FunctionCallInfo)) {
int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
StrategyNumber strategy = PG_GETARG_UINT16(2);
int32 *searchMode = (int32 *) PG_GETARG_POINTER(6);
@@ -90,7 +86,7 @@ gin_extract_hstore_query(PG_FUNCTION_ARGS)
{
/* Query is an hstore, so just apply gin_extract_hstore... */
entries = (Datum *)
- DatumGetPointer(DirectFunctionCall2(gin_extract_hstore,
+ DatumGetPointer(DirectFunctionCall2(extract_fn,
PG_GETARG_DATUM(0),
PointerGetDatum(nentries)));
/* ... except that "contains {}" requires a full index scan */
@@ -147,6 +143,19 @@ gin_extract_hstore_query(PG_FUNCTION_ARGS)
PG_RETURN_POINTER(entries);
}
+PG_FUNCTION_INFO_V1(gin_extract_hstore_query);
+Datum gin_extract_hstore_query(PG_FUNCTION_ARGS);
+
+Datum
+gin_extract_hstore_query(PG_FUNCTION_ARGS)
+{
+ Datum *entries;
+
+ entries = (Datum *) DatumGetPointer(extract_hstore_query(fcinfo, &gin_extract_hstore));
+
+ PG_RETURN_POINTER(entries);
+}
+
PG_FUNCTION_INFO_V1(gin_consistent_hstore);
Datum gin_consistent_hstore(PG_FUNCTION_ARGS);
@@ -211,3 +220,120 @@ gin_consistent_hstore(PG_FUNCTION_ARGS)
PG_RETURN_BOOL(res);
}
+
+/*
+ * 'gin_hstore_combined_ops' indexing opclass.
+ *
+ * This gin indexing strategy produces a combined key and value index entry to
+ * support @> queries, and a key only index entry to support ? queries. This
+ * can produce a significant speedup in @> queries, at the cost of a larger
+ * index size.
+ */
+
+static text *
+make_combined_item(HEntry *hsent, char *ptr, int i) {
+ int keylen;
+ int vallen;
+ int len;
+ int valflag;
+ text *item;
+
+ keylen = HS_KEYLEN(hsent, i);
+
+ if (HS_VALISNULL(hsent, i)) {
+ valflag = NULLFLAG;
+ vallen = 0;
+ } else {
+ valflag = VALFLAG;
+ vallen = HS_VALLEN(hsent, i);
+ }
+
+ len = keylen + vallen + VARHDRSZ + 2;
+ item = (text *) palloc(len);
+ SET_VARSIZE(item, len);
+
+ *VARDATA(item) = KEYFLAG;
+
+ memcpy(VARDATA(item) + 1,
+ HS_KEY(hsent, ptr, i), keylen);
+
+ *(VARDATA(item) + 1 + keylen) = valflag;
+
+ memcpy(VARDATA(item) + 2 + keylen,
+ HS_VAL(hsent, ptr, i), vallen);
+
+ return item;
+}
+
+static Datum
+gin_extract_hstore_contains(PG_FUNCTION_ARGS)
+{
+ HStore *hs = PG_GETARG_HS(0);
+ int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
+ Datum *entries = NULL;
+ HEntry *hsent = ARRPTR(hs);
+ char *ptr = STRPTR(hs);
+ int count = HS_COUNT(hs);
+ int i;
+
+ *nentries = count;
+ if (count)
+ entries = (Datum *) palloc(sizeof(Datum) * count);
+
+ for (i = 0; i < count; ++i)
+ {
+ text *item;
+
+ item = make_combined_item(hsent, ptr, i);
+ entries[i] = PointerGetDatum(item);
+ }
+
+ PG_RETURN_POINTER(entries);
+}
+
+PG_FUNCTION_INFO_V1(gin_extract_hstore_query_combined);
+Datum gin_extract_hstore_query_combined(PG_FUNCTION_ARGS);
+
+Datum
+gin_extract_hstore_query_combined(PG_FUNCTION_ARGS)
+{
+ Datum *entries;
+
+ entries = (Datum *) DatumGetPointer(extract_hstore_query(fcinfo, &gin_extract_hstore_contains));
+
+ PG_RETURN_POINTER(entries);
+}
+
+PG_FUNCTION_INFO_V1(gin_extract_hstore_combined);
+Datum gin_extract_hstore_combined(PG_FUNCTION_ARGS);
+
+Datum
+gin_extract_hstore_combined(PG_FUNCTION_ARGS)
+{
+ HStore *hs = PG_GETARG_HS(0);
+ int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
+ Datum *entries = NULL;
+ HEntry *hsent = ARRPTR(hs);
+ char *ptr = STRPTR(hs);
+ int count = HS_COUNT(hs);
+ int i;
+
+ *nentries = 2 * count;
+ if (count)
+ entries = (Datum *) palloc(sizeof(Datum) * 2 * count);
+
+ for (i = 0; i < count; ++i)
+ {
+ text *combined;
+ text *keyonly;
+
+ combined = make_combined_item(hsent, ptr, i);
+ keyonly = makeitem(HS_KEY(hsent, ptr, i), HS_KEYLEN(hsent, i),
+ KEYFLAG);
+
+ entries[2 * i] = PointerGetDatum(combined);
+ entries[2 * i + 1] = PointerGetDatum(keyonly);
+ }
+
+ PG_RETURN_POINTER(entries);
+}
diff --git a/contrib/hstore/sql/hstore.sql b/contrib/hstore/sql/hstore.sql
index 68b74bf..e7e8bcd 100644
--- a/contrib/hstore/sql/hstore.sql
+++ b/contrib/hstore/sql/hstore.sql
@@ -323,6 +323,22 @@ select count(*) from (select h from (select * from testhstore union all select *
select distinct * from (values (hstore '' || ''),('')) v(h);
set enable_sort = true;
+-- gin combined opclass
+
+drop index hidx;
+create index hidx on testhstore using gin (h gin_hstore_combined_ops);
+set enable_seqscan=off;
+
+select count(*) from testhstore where h @> 'wait=>NULL';
+select count(*) from testhstore where h @> 'wait=>CC';
+select count(*) from testhstore where h @> 'wait=>CC, public=>t';
+select count(*) from testhstore where h ? 'public';
+select count(*) from testhstore where h ?| ARRAY['public','disabled'];
+select count(*) from testhstore where h ?& ARRAY['public','disabled'];
+
+select count(*) from (select (each(h)).key from testhstore) as wow ;
+select key, count(*) from (select (each(h)).key from testhstore) as wow group by key order by count desc, key;
+
-- btree
drop index hidx;
create index hidx on testhstore using btree (h);
--
1.7.12.4 (Apple Git-37)
Blake,
Teodor will review your patch, but I have one consideration about the patch
in context of future hstore, which supports hierarchical structures. In
that case overhead of composite keys will be enormous and the only way in
this direction is to think about idea suffix array instead of btree to
store keys. But this is another big task and I afraid to think about this
now.
Oleg
On Mon, Sep 9, 2013 at 6:55 PM, Blake Smith <blakesmith0@gmail.com> wrote:
Show quoted text
Thanks for getting back to me about this change Oleg. I took your advice
and reworked the patch by adding a new hstore gin opclass
(gin_hstore_combined_ops) and leaving the functionality of the default
hstore gin opclass the same. This should prevent the on-disk compatibility
issues from the first patch, and allow users to select the different
indexing method when they build the index. The hstore regression suite is
passing for me locally with the --enable-cassert configure flag. Please let
me know what you think and if there is any other work that would need to be
done (style cleanups, updating documentation, etc) to get this merged.Thanks!
Blake
On Fri, Sep 6, 2013 at 1:47 PM, Oleg Bartunov <obartunov@gmail.com> wrote:
Blake,
I think it's better to implement this patch as a separate opclass, so
users will have option to choose indexing.Oleg
On Tue, Sep 3, 2013 at 6:24 PM, Blake Smith <blakesmith0@gmail.com>wrote:
Thanks for the feedback everyone. I've attached the patch that we are
now running in production to service our hstore include queries. We rebuilt
the index to account for the on-disk incompatibility. I've submitted the
patch to commitfest here:
https://commitfest.postgresql.org/action/patch_view?id=1203Michael: I don't have a formal benchmark, but several of our worst
queries went from 10-20 seconds per query down to 50-400 ms. These are
numbers we've seen when testing real production queries against our
production dataset with real world access patterns.
Oleg: Thanks for your thoughts on this change. As for the spgist / gin
work you're doing, is there anything you need help with or are you still in
the research phase? I'd love to help get something more robust merged into
mainline if you think there's collaborative work to be done (even if it's
only user testing).Thanks,
Blake
On Wed, Aug 28, 2013 at 12:40 PM, Andres Freund <andres@2ndquadrant.com>wrote:
On 2013-08-28 13:31:22 -0400, Bruce Momjian wrote:
On Sun, Aug 25, 2013 at 10:11:50PM -0400, Tom Lane wrote:
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <
blakesmith0@gmail.com> wrote:
The combined entry is used to support "contains (@>)" queries,
and the key
only item is used to support "key contains (?)" queries. This
change seems
to help especially with hstore keys that have high
cardinalities. Downsides
of this change is that it requires an index rebuild, and the
index will be
larger in size.
Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probablywill be
future releases in which we are willing to break storage
compatibility,
a contrib module doesn't get to dictate that.
What might be a practical solution, especially if this isn't always
a
win (which seems likely given the index-bloat risk), is to make
hstore
offer two different GIN index opclasses, one that works the
traditional
way and one that works this way.
Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.We can disallow in-place upgrades for clusters that use certain
contrib
modules --- we have done that in the past.
But that really cannot be acceptable for hstore. The probably most
widely used extension there is.Greetings,
Andres Freund
--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services--
Blake Smith
http://blakesmith.me
@blakesmith--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers--
Blake Smith
http://blakesmith.me
@blakesmith
Blake,
I've taken the liberty of adding this patch to the current Commitfest.
In future, please continue to send patches both to this thread and to
the commitfest application when you have a message ID for them :)
Cheers,
David.
On Mon, Sep 09, 2013 at 09:55:01AM -0500, Blake Smith wrote:
Thanks for getting back to me about this change Oleg. I took your advice
and reworked the patch by adding a new hstore gin opclass
(gin_hstore_combined_ops) and leaving the functionality of the default
hstore gin opclass the same. This should prevent the on-disk compatibility
issues from the first patch, and allow users to select the different
indexing method when they build the index. The hstore regression suite is
passing for me locally with the --enable-cassert configure flag. Please let
me know what you think and if there is any other work that would need to be
done (style cleanups, updating documentation, etc) to get this merged.Thanks!
Blake
On Fri, Sep 6, 2013 at 1:47 PM, Oleg Bartunov <obartunov@gmail.com> wrote:
Blake,
I think it's better to implement this patch as a separate opclass, so
users will have option to choose indexing.Oleg
On Tue, Sep 3, 2013 at 6:24 PM, Blake Smith <blakesmith0@gmail.com> wrote:
Thanks for the feedback everyone. I've attached the patch that we are now
running in production to service our hstore include queries. We rebuilt the
index to account for the on-disk incompatibility. I've submitted the patch
to commitfest here:
https://commitfest.postgresql.org/action/patch_view?id=1203Michael: I don't have a formal benchmark, but several of our worst
queries went from 10-20 seconds per query down to 50-400 ms. These are
numbers we've seen when testing real production queries against our
production dataset with real world access patterns.
Oleg: Thanks for your thoughts on this change. As for the spgist / gin
work you're doing, is there anything you need help with or are you still in
the research phase? I'd love to help get something more robust merged into
mainline if you think there's collaborative work to be done (even if it's
only user testing).Thanks,
Blake
On Wed, Aug 28, 2013 at 12:40 PM, Andres Freund <andres@2ndquadrant.com>wrote:
On 2013-08-28 13:31:22 -0400, Bruce Momjian wrote:
On Sun, Aug 25, 2013 at 10:11:50PM -0400, Tom Lane wrote:
Michael Paquier <michael.paquier@gmail.com> writes:
On Thu, Aug 22, 2013 at 11:55 PM, Blake Smith <
blakesmith0@gmail.com> wrote:
The combined entry is used to support "contains (@>)" queries,
and the key
only item is used to support "key contains (?)" queries. This
change seems
to help especially with hstore keys that have high cardinalities.
Downsides
of this change is that it requires an index rebuild, and the
index will be
larger in size.
Index rebuild would be a problem only for minor releases,
That's completely false; people have expected major releases to be
on-disk-compatible for several years now. While there probably willbe
future releases in which we are willing to break storage
compatibility,
a contrib module doesn't get to dictate that.
What might be a practical solution, especially if this isn't always a
win (which seems likely given the index-bloat risk), is to makehstore
offer two different GIN index opclasses, one that works the
traditional
way and one that works this way.
Another thing that needs to be taken into account here is Oleg and
Teodor's in-progress work on extending hstore:
https://www.pgcon.org/2013/schedule/events/518.en.html
I'm not sure if this patch would conflict with that at all, but it
needs to be considered.We can disallow in-place upgrades for clusters that use certain contrib
modules --- we have done that in the past.But that really cannot be acceptable for hstore. The probably most
widely used extension there is.Greetings,
Andres Freund
--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services--
Blake Smith
http://blakesmith.me
@blakesmith--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers--
Blake Smith
http://blakesmith.me
@blakesmith
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
--
David Fetter <david@fetter.org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david.fetter@gmail.com
iCal: webcal://www.tripit.com/feed/ical/people/david74/tripit.ics
Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
Are you still working on this patch?
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers